实验六:结构体与文件实验
实验题目(1)【见实验教材实验八的题目3】:编写程序exp8_3.c,验证用户输入的日期格式是否正确,如果不正确,则提示重新输入,直到重新输入正确为止。(提示:需要定义一个表示日期的结构体类型struct Date,包括年、月、日信息,并用typedef重新定义新类型名Date;检查日期是否有效,定义为函数int checkDate(Date date))。
实验解答:① 源程序代码如下:
# includestruct Date { int year; int month; int day; }; typedef struct Date Date; int main() { int b[13]={0,31,0,31,30,31,30,31,31,30,31,30,31}; Date a[20]; do { printf("Please input date(XXXX XX XX):n"); scanf("%4d%d%d",&(a->year),&(a->month),&(a->day)); if(a->month==2) { if((a->year%4==0&&a->year%100!=0)||a->year%400==0) b[2]=29; else b[2]=28; } }while((a->month<1||a->month>12)||(b[a->month]<(a->day)||a->day<1)); printf("%d-%d-%d",a->year,a->month,a->day); return 0; }
实验题目(2)【见实验教材实验九的题目1】:编写程序exp9_1.c ,从键盘读入一系列字符并以“#”结束,将读入的字符(不包括#号)存入文本文件D:f1.txt中,再从该文件读取内容,并在显示器上原样显示。
实验解答: 写出完整的源程序代码并做适当注释:
# include# include # include # define N 20 int main() { FILE * fp; char str[N]; int lines=0; fp=fopen("D:\f1.txt","w"); //以写的方式打开文件 if(fp==NULL) //如果打开文件失败 { printf("file errorn"); exit(1); } gets(str); while(strcmp(str,"#")!=0) //如果读入的不是“#”串则写入文件 { fputs(str,fp); //将读入的字符串写入文件 fputc('n',fp); //换行 gets(str); 继续读入一串字符 } rewind(fp); while(fgets(str,N,fp)!=NULL) { printf("%s",str); //原样输出该字符 lines++; } fclose(fp); //关闭文件 return 0; }
实验题目(3)【见实验教材实验九的题目2】:某班有学生若干名(不超过40名),其信息的组织采用如下的结构体定义。编写程序exp9_2.c,完成要求的功能。
struct Student
{
char ID[20];
char name[30];
int age;
double score;
};
① 从键盘读入该班级学生的信息。
② 将所有的学生信息存入D:Info.dat文件中、关闭该文件,建立文件定义函数CreateFile实现。
③ 另写一个函数ReadOut,将D:Info.dat文件中的信息读入到内存,并依次输出到显示器上,该函数由main函数调用。
④编写函数Sort,实现按成绩由高到低将学生记录进行排序并输出排序后的结果。
⑤文件读写采用二进制读写(fread、fwrite)方式。实验解答: ①请写出完整的源程序代码并做适当注释:
#include#include #include typedef struct Student { char ID[20]; char name[30]; int age; double score; }Student; void CreateFile(); void WriteFile(Student st[],int n); void ReadOutFile(Student st[]); void Sort(Student st[],int n); void Printf(Student st[],int n); int main() { Student st[40]; int n; printf("How many scores you want to input?n"); scanf("%d",&n); CreateFile(); printf("Plaese input scores:nIDtNametagetScoren"); WriteFile(st,n); ReadOutFile(st); printf("nYou input:n"); Printf(st,n); Sort(st,n); printf("nAfter sorting:n"); Printf(st,n); return 0; } //创建文件 void CreateFile() //创建一个文件 { FILE *fp; fp=fopen("D:\Info.dat","wb"); if ( fp == 0 ) { printf( "Creat file errorn" ); exit(1); } fclose(fp); } //写入数据 void WriteFile(Student st[],int n) { int i; FILE *fp; fp=fopen("D:\Info.dat","r+"); if ( fp == 0 ) { printf( "open binary file errorn" ); exit(1); } for(i=0;i 欢迎分享,转载请注明来源:内存溢出
评论列表(0条)