C语言中的结构体与文件实验主要涉及到结构体的定义和使用,以及文件的读写操作。这个实验的目的是帮助学生熟练掌握结构体数据类型的概念和使用方法,同时掌握文件的基本操作。
结构体是C语言中一种构造数据类型,允许将多个不同类型的数据项存储为一个单元。例如,在处理学生信息时,可以将学号、姓名、成绩等不同种类的数据组合在一起,形成一个新的数据结构来表示一个学生[1]。这种设计不仅方便了数据的组织和管理,还提高了程序的可读性和易维护性。
在文件操作方面,C语言提供了丰富的函数来进行文件的打开、关闭、读取、写入等操作。这些操作可以分为文本文件操作和二进制文件操作,二者在数据的存储和读取方式上有所不同。通过文件操作,可以持久保存数据,并在需要时重新加载,这对于数据处理和存储非常关键[2]。
具体到实验内容,通常要求学生定义一个结构体类型来存储如学生的个人信息和成绩,然后使用数组或链表来管理多个学生的信息。在此基础上,实现添加、删除、修改学生信息的功能,并能够将数据保存到文件中,或从文件中读取数据[3][4]。这不仅考验了学生对结构体和文件操作的理解,也锻炼了他们综合运用C语言解决问题的能力。
总的来说,C语言的结构体与文件实验是帮助学生理解和掌握复杂数据结构和文件操作的重要环节。通过这一实验,学生不仅能深入了解结构体在数据组织中的作用,还能学会如何利用文件操作进行数据的持久化存储。这些技能对于未来从事软件开发工作至关重要,值得每位学习者认真学习和实践。
(1)掌握结构体类型以及结构体变量的定义与使用。
(2)综合运用结构体、数组、指针等知识,解决相关问题。
(3)会正确定义FILE*指针,掌握文件操作从打开、读写到关闭的完整过程。
(4)理解文本文件和二进制文件的区别和不同的读写方式。
硬件: 微型计算机
软件: Windows 操作系统、Microsoft Visual Studio 2010
编写程序exp8_3.c,验证用户输入的日期格式是否正确,如果不正确,则提示重新输入,直到重新输入正确为止。(提示:需要定义一个表示日期的结构体类型struct Date,包括年、月、日信息,并用typedef重新定义新类型名Date;检查日期是否有效,定义为函数int checkDate(Date date))。
实验解答:
#include
struct Date
{
int year;
int month;
int day;
};
typedef struct Date Date;
int checkData(Date date)
{
if (date.year < 1900 || date.year>2018)
{
return 0;
}
if (date.month < 1 || date.month>12)
{
return 0;
}
if (date.month == 1 ||
date.month == 3 ||
date.month == 5 ||
date.month == 7 ||
date.month == 8 ||
date.month == 10 ||
date.month == 12 )
{
if (date.day < 1 || date.day > 31)
{
return 0;
}
}
else if (date.month == 4 ||
date.month == 6 ||
date.month == 9 ||
date.month == 11)
{
if (date.day < 1 || date.day > 30)
{
return 0;
}
}
else
{
if (date.year % 4 == 0 && date.year % 100 != 0 || date.year % 400 == 0)
{
if (date.day < 1 || date.day > 29)
{
return 0;
}
}
else
{
if (date.day < 1 || date.day > 28)
{
return 0;
}
}
}
return 1;
}
int main()
{
Date date; int flag;
do
{
printf("please input date!\n");
scanf_s("%d%d%d", &date.year, &date.month, &date.day);
flag = checkData(date);
if (flag)
{
printf("The date is valid!\n");
}
else
{
printf("Invalid date!\n");
}
} while (!flag);
return 0;
}
测试用例 输入的原始数据 需要重新输入或你的输出结果
用例1 2002 4 31 please input date!
2002 4 31
Invalid date!
please input date!
用例2 1809 12 3 please input date!
1809 12 3
Invalid date!
please input date!
用例3 2020 5 4 please input date!
2020 5 4
Invalid date!
please input date!
用例4 2000 2 29 please input date!
2000 2 29
The date is valid!
用例5 1908 14 23 please input date!
1908 14 23
Invalid date!
please input date!
用例6 2003 11 -8 please input date!
2003 11 -8
Invalid date!
please input date!
用例7 1996 2 31 please input date!
1996 2 31
Invalid date!
please input date!
用例8 1996 5 19 please input date!
1996 5 19
The date is valid!
编写程序exp9_1.c ,从键盘读入一系列字符并以“#”结束,将读入的字符(不包括#号)存入文本文件D:\f1.txt中,再从该文件读取内容,并在显示器上原样显示。
实验解答: 写出完整的源程序代码并做适当注释:
#include
#include
void writeFile(int ch, FILE* fp);
void readFile(int ch, FILE* fp);
int main()
{
FILE* fp;
char ch = 0;
fp = fopen("D:\\f1.txt", "w+");
if (fp == NULL)
{
printf("file error\n");
exit(1);
}
writeFile(ch, fp);
rewind(fp);
readFile(ch, fp);
fclose(fp);
return 0;
}
void writeFile(int ch, FILE* fp)
{
printf("Please enter a string of characters ending with #:\n");
ch = getchar();
while (ch != '#')
{
fputc(ch, fp);
ch = getchar();
}
}
void readFile(int ch, FILE* fp)
{
while ((ch = fgetc(fp)) != EOF)
{
putchar(ch);
}
printf("\n");
}
某班有学生若干名(不超过40名),其信息的组织采用如下的结构体定义。编写程序exp9_2.c,完成要求的功能。
struct Student
{
char ID[20];
char name[30];
int age;
double score;
};
实验解答:
#include
#include
struct Student
{
char ID[20];
char name[30];
int age;
double score;
};
typedef struct Student Stu;
#define N 50
void CreateFile(Stu [],int n,FILE *fp);
void ReadOut(Stu [],int n,FILE *fp);
void Sort(Stu [],int len);
int main()
{
int n,i,x;
Stu stu[N];
FILE *fp=NULL;
do
{
printf("Please input the number of students:\n");
scanf("%d",&n);
}while(n<1||n>40);
for(i=0;i<n;i++)
{
x=i+1;
printf("%d(ID name age score):\n",x);
scanf("%s%s%d%lf",stu[i].ID,stu[i].name,&stu[i].age,&stu[i].score);
}
CreateFile(stu,n,fp);
printf("before being sorted:\n");
ReadOut(stu,n,fp);
printf("after being sorted:\n");
Sort(stu,n);
return 0;
}
void CreateFile(Stu stu[],int n,FILE *fp)
{
fp=fopen("D:\\Info.dat","wb+");
if(fp==0) //文?件t打䨰开a后¨®需¨¨判D断?是º?否¤?正y确¨¡¤
{
printf("file error\n");
exit(1);
}
fwrite(stu,sizeof(Stu),n,fp);
fclose(fp);
}
void ReadOut(Stu stu[],int n,FILE *fp)
{
int i=0;
fp=fopen("D:\\Info.dat","rb");
if(fp==0) //文?件t打䨰开a后¨®需¨¨判D断?是º?否¤?正y确¨¡¤
{
printf("file error\n");
exit(1);
}
fread(&stu[i],sizeof(Stu),n,fp);
for(i=0;i<n;i++)
printf("%s %s %d %.2f\n",stu[i].ID,stu[i].name,stu[i].age,stu[i].score);
fclose(fp);
}
void Sort(Stu stu[],int len)
{
int i,k,index;
Stu temp;
for(k=0;k<len-1;k++)
{
index=k;
for(i=k+1;i<len;i++)
if(stu[i].score>stu[index].score)
index=i;
if(index!=k)
{
temp=stu[index];
stu[index]=stu[k];
stu[k]=temp;
}
}
for(i=0;i<len;i++)
printf("%s %s %d %.2f\n",stu[i].ID,stu[i].name,stu[i].age,stu[i].score);
}
Please input the number of students:
3
1(ID name age score):
101 a 19 90
2(ID name age score):
102 b 18 99
3(ID name age score):
103 y 20 78
before being sorted:
101 a 19 90.00
102 b 18 99.00
103 y 20 78.00
after being sorted:
102 b 18 99.00
101 a 19 90.00
103 y 20 78.00
请按任意键继续. . .
验证日起合法性的判断条件,太繁琐。看书上的例题后找到可以将月份的天数存入数组。
对于文件的操作还应该继续熟悉与拓展。
多上机调试。