c 實現學生成績管理

2021-06-09 00:33:05 字數 480 閱讀 6436

#include

#include

#include

#include

#include

struct score

;void main()

printf("all the score bellow\n");

printf("id\t語文\t英語\t數學\n");

for( i=0;i

int max=0;

int m=0;

for(i=0;imax)

}printf("the higest score is %d\n the student number is %d\n",max,m+1);

printf("input a num(1,2,3)to select\n");

int sec;

scanf("%d",&sec);

switch(sec)

return ;

}

python語言實現學生成績管理系統

stuinfo 主選單函式 def menu print 30 print 1.增加學生資訊 print 2.刪除學生資訊 print 3.修改學生資訊 print 4.查詢學生資訊 print 5.顯示學生資訊 print 6.退出系統 print 30 增加學生資訊函式 def addinfo ...

C 鍊錶實現學生成績管理(增刪改查)

簡介 並未封裝成類,功能也僅實現了增量改查。資料為txt,格式 學號 long 姓名 string 總分 int 學生資訊結構體 struct student 節點結構體 struct node 讀取data.txt中獲取資料 node readinformation node root q nex...

C語言巢狀鍊錶實現學生成績管理系統

鍊錶a,每個節點存放乙個新的鍊錶b1,b2,b3,b4,b5的頭結點。場景 乙個年級,相當鍊錶a 該年級5個班,每個班5個人,相當於鍊錶b1 b5 做乙個學生成績管理系統 學生成績有語文 數學 英語 功能 錄入成績 找三科總分的最高分 最低分 算出平均分 鍊錶是一種常見的基礎資料結構,結構體指標在這...