早教吧 育儿知识 作业答案 考试题库 百科 知识分享

C语言改错急急急!!!!!~~~~#include#include#defineX10structstudent{charname[10];charnum[10];charaddr[10];chartele[11];}stud[X];voidmain(){inti=0;charx;charc[10];FILE*fp;fp=fopen("int.txt","r");{fread(&stud[

题目详情
C语言改错 急急急!!!!!~~~~#include #include #define X 10 struct student {char name[10]; char num[10]; char addr[10]; char tele[11]; }stud[X]; void main() { int i=0; char x; char c[10]; FILE * fp; fp=fopen("int.txt","r"); {fread(&stud[i],sizeof(stud),1,fp);} fclose(fp); printf("按姓名查询请按a\n"); printf("按学号查询请按b\n"); scanf("%c",&x); if(x=='a') goto loop; else if (x=='b') goto leep; loop:printf("请输入姓名"); /*按姓名查询*/ gets(c); for(i=0;i0) printf("%s%s%s%s",stud[i].name,stud[i].num,stud[i].addr,stud[i].tele); else printf("没有您要查询的学生的信息"); leep: printf("请输入学号"); /*按学号查询*/ gets(c); for(i=0;i0) printf("%s%s%s%s",stud[i].name,stud[i].num,stud[i].addr,stud[i].tele); else printf("没有您要查询的学生的信息"); } 用结构体描述学生的:姓名、学号、电话号码、家庭住址。自己动手建立文件in.txt,其中有10个学生的姓名、学号、电话号码、家庭住址。编写一个程序通过姓名和学号分别查询学生的基本信息。 一定要改 不要重编的
▼优质解答
答案和解析
你把乘号都给掉了#include #include main() 如果帮助到您,请记得采纳为满意答案哈,谢谢!祝您生活愉快! vae.la