- 10
- 0
- 约1.35万字
- 约 16页
- 2018-04-30 发布于河南
- 举报
学生成绩管理信息系统源码
#include dos.h
#include stdio.h
#include stdlib.h
#include conio.h
#include math.h
#include string.h
/**********************建立链表******************************/
struct hj
{ int age;
long number;
char name[10],address[50],sex[2];
struct hj *next;
};
/**************************文件操作函数******************************/
FILE *fp;
void openfile(char xx[20])
{
fp=fopen(xx,ab+);
if(fp==NULL)
fp=fopen(xx,wb);
}
/************************录入信息函数***********************************/
void hjnew(void)
{
system(cls);
int n=0,xage;
long xnumber;
char xname[10];
char xaddress[50];
char xsex[2];
str
原创力文档

文档评论(0)