真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

學(xué)生成績管理系統(tǒng)(很懶不想寫注釋了)-創(chuàng)新互聯(lián)

任務(wù)描述
本關(guān)任務(wù):用單向鏈表建立一張班級成績單,包括每個學(xué)生的學(xué)號、姓名、英語、高等數(shù)學(xué)、普通物理、C語言程序設(shè)計四門課程的成績。除菜單0為退出外,菜單1-5分別實現(xiàn)下列功能:
① 輸入每個學(xué)生的各項信息。?
② 輸出每個學(xué)生的各項信息。
③ 修改指定學(xué)生的指定數(shù)據(jù)項的內(nèi)容。
④ 統(tǒng)計每個同學(xué)的平均成績(保留2位小數(shù))。
⑤ 輸出各位同學(xué)的學(xué)號、姓名、四門課程的總成績和平均成績。 編程要求
從main函數(shù)返回之前必須釋放通過malloc等函數(shù)申請的內(nèi)存空間。

#include
#include
#include
struct stu{
?int xuehao;
?char name[10];
?int eng;
?int math;
?int wuli;
?int cyuyan;
?struct stu *next;
};
int n;
static struct stu *head=NULL;
static struct stu *prev,*current;
void input(void)
{
?printf("請輸入學(xué)生人數(shù)\n");?
?scanf("%d",&n);
?printf("請輸入學(xué)生信息按照學(xué)號2021001開始 姓名 英語成績 數(shù)學(xué)成績 物理成績 c語言成績的格式\n");?
?for(int i=0;i ?{
??? ?current=(struct stu*)malloc(sizeof(struct stu));
??? ?if(head==NULL)
??? ? ? ?head=current;
??? ?else prev->next=current;
??? ?current->next=NULL;
??? ?scanf("%d%s%d%d%d%d",¤t->xuehao,current->name,¤t->eng,¤t->math,¤t->wuli,¤t->cyuyan);
??? ?while(getchar()!='\n')
??? ? ? ?continue;
??? ?prev=current;
?}
?printf("完成了%d位同學(xué)的成績輸入\n",n);
}
void output(void)
{
?printf("%d位學(xué)生成績?nèi)缦耚n",n);?
?if(head==NULL)
?printf("0");
?current=head;
?while(current!=NULL)
?{
??? ?printf("%d %s %d %d %d %d\n",current->xuehao,current->name,current->eng,current->math,current->wuli,current->cyuyan);
??? ?current=current->next;
?}
}

站在用戶的角度思考問題,與客戶深入溝通,找到伊通網(wǎng)站設(shè)計與伊通網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:網(wǎng)站制作、成都做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、申請域名、虛擬空間、企業(yè)郵箱。業(yè)務(wù)覆蓋伊通地區(qū)。

void change(void)
{
?printf("請輸入你想改變的學(xué)生信息,按照格式:學(xué)號 數(shù)字 改變后內(nèi)容(其中數(shù)字0代表改姓名1代表英語以此類比直到數(shù)字4\n");
?current=head;
?int xuefen,m,name[10];
?scanf("%d",&xuefen);
?scanf("%d",&m);
?for(int i=0;i ?{
??? ?current=current->next;
?}
?switch(m)
?{
??? ?case 0:scanf("%s",current->name);break;
??? ?case 1:scanf("%d",¤t->eng);break;
??? ?case 2:scanf("%d",¤t->math);break;
??? ?case 3:scanf("%d",¤t->wuli);break;
??? ?case 4:scanf("%d",¤t->cyuyan);break;
?}
?printf("%d %s %d %d %d %d\n",current->xuehao,current->name,current->eng,current->math,current->wuli,current->cyuyan);
?current=head;
?
}

void average(int n)
{
?printf("各科成績以及平均成績?nèi)缦?);?
?current=head;
?for(int i=0;i ?{
??? ?printf("%d %s %.2f\n",current->xuehao,current->name,(float)(current->eng+current->math+current->wuli+current->cyuyan)/4);
??? ?current=current->next;
?}
}

void outevery(int n)
{
?printf("各科成績以,平均成績以及總成績?nèi)缦?);?
?current=head;
?for(int i=0;i ?{
??? ?printf("%d %s %d %.2f\n",current->xuehao,current->name,current->eng+current->math+current->wuli+current->cyuyan,(float)(current->eng+current->math+current->wuli+current->cyuyan)/4);
??? ?current=current->next;
?}
}
int main(void)
{
?printf("請輸入你想實現(xiàn)的功能0退出1輸入成績2輸出成績3修改指定項目內(nèi)容4輸出平均成績5輸出總成績\n");?
?int choose;
?while(scanf("%d",&choose)!=0)
?{
??? ?if(choose==0)
??? ?{
??? ??? ?printf("程序執(zhí)行完畢,歡迎下次光臨!");?
??? ? ? ?return 0;
?}
??? ?switch(choose)
??? ?{
??? ??? ?case 1:input();break;
??? ??? ?case 2:output();break;
??? ??? ?case 3:change();break;
??? ??? ?case 4:average(n);break;
??? ??? ?case 5:outevery(n);break;
??? ?}
??? ?
?}
?current=head;
?while(current!=NULL)
?{
??? ?head=current->next;
??? ?free(current);
??? ?current=head;
?}
?return 0;
}

作為oj上的難題,寫完后真是心情舒暢

bd2288ad8ed24c2bb0d7be050351a1e4.jpeg

你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機(jī)房具備T級流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級服務(wù)器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧


分享題目:學(xué)生成績管理系統(tǒng)(很懶不想寫注釋了)-創(chuàng)新互聯(lián)
網(wǎng)站網(wǎng)址:http://weahome.cn/article/gpjjj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部