C语言作业用C语言编写一个程序实
#includestaticintcount=0;//--------------------------------常用词汇://定义一个结构count统计输入的人数ave平均成绩//--------------------------------operate操作sort排序函数名删除函数delt()struct{intnumber;charname[20];doublescore[3];doubleave;}stu[50],temp;//---------------------------------//子函数部分press()写入函数;show()显示函数;//---------...全部
#includestaticintcount=0;//--------------------------------常用词汇://定义一个结构count统计输入的人数ave平均成绩//--------------------------------operate操作sort排序函数名删除函数delt()struct{intnumber;charname[20];doublescore[3];doubleave;}stu[50],temp;//---------------------------------//子函数部分press()写入函数;show()显示函数;//---------------------------------sort()从大到小排序函数;delt()删除数据函数//信息录入函数voidpress(){printf("\n学号:");scanf("%d",&stu[count]。
number);printf("\n姓名:");fflush(stdin);gets(stu[count]。name);printf("\n成绩1:");scanf("%lf",&stu[count]。
score[0]);printf("\n成绩2:");scanf("%lf",&stu[count]。score[1]);printf("\n成绩3:");scanf("%lf",&stu[count]。
score[2]);stu[count]。ave=(stu[count]。score[0]+stu[count]。score[1]+stu[count]。
score[2])/3;count++;}//显示信息函数voidshow(){inti;printf("学号\t\t姓名\t\t平均成绩\n");for(i=0;i删除数据2->插入数据:");scanf("%d",&operate);switch(operate){case1:delt();printf("删除数据后的信息如下:\n");show();break;case2:press();printf("插入数据后的信息如下:\n");sort();show();break; ("输入错误:");}printf("是否继续进行修改数据:('Y'or'N'):");fflush(stdin);choice=getchar();}while(choice=='Y'||choice=='y');}。收起