资源简介

自学之后总结网上各路大神的代码想法,做出的完整版-C语言的课程设计--新生报到系统。

资源截图

代码片段和文件信息

#include
#include
#include

struct Stu//结构体 
{
int num;
char name[20];
char sex[20];
int age;
float score[3];
struct Stu *next; 
}stu[100];

//////////////////////////////////////////

int link()
{
int t;
FILE *fp;
fp=fopen(“student.txt““rb“);
fseek(fp0SEEK_END);
t=ftell(fp);
fclose(fp);
return t;


void save(struct Stu *head)//保存到文件 
{
struct Stu *p;
p=head;
FILE *fp;
if((fp=fopen(“student.txt““wb“))==NULL)
{
printf(“打开文件失败\n“);
}
else
{
printf(“保存成功\n“);
}
fwrite(psizeof(struct Stu)1fp);
while(p!=NULL)
{
p=p->next;
fwrite(psizeof(struct Stu)1fp);
}
fclose(fp);
}

struct Stu *read()//读取
{
int t;
struct Stu *head*p*p0;
head=NULL;
FILE *fp;
if((fp=fopen(

评论

共有 条评论