超簡單的學生資訊管理系統
使用順序表實現~~適合入門,新手學習使用
#include
#include
#include
#include
#define n 20
int count=0;
typedef
struct
student;
typedef
struct
sqlist;
void
create
(sqlist &stu)
}printf
("\n請輸入該學生年級:");
scanf
("%d"
,&stu.list[count]
.grade)
;printf
("\n請輸入該學生姓名:");
scanf
("%s"
,&stu.list[count]
.name)
;printf
("\n請輸入該學生成績:");
scanf
("%d"
,&stu.list[count]
.score)
; count++
;printf
("\n錄入成功");
printf
("\n是否繼續錄入?(y/n)");
fflush
(stdin);
scanf
("%c"
,&flag);}
while
(flag==
'y'||flag==
'y');}
void
browse
(sqlist &stu)
printf
("\n\n");
printf
("\n\n\n\n\n按任意鍵繼續!");
getch()
;}void
find
(sqlist &stu)}if
(i>=count)
else
}void
del(sqlist &stu)
if(flag==1)
}else
printf
("\n按任意鍵繼續!");
C語言學生資訊管理系統課設
專案說明 本系統基於c語言開發,適用於剛入門的 c語言新手專案課設,開發軟體採用 vc 6.0 開發,vs dev c 等均可執行。專案執行截圖 介面截圖 部分關鍵 從檔案載入資訊至鍊錶,改變全域性頭指標 phint readf file pf stu p,tail pf fopen studata...
學生資訊管理系統(C語言)
include includetypedef struct s student student insert student last student head 不傳頭 student order student student head,int student list length 按學號小到大...
C語言學生資訊管理系統(動態鍊錶版)
大一上學期的期末作業,只記得當時弄了好長時間。在寫 的過程中,能發現很多問題,錯誤,折磨人的很。不過也確實學到了好多東西。這其中,有王瑤哥和菲菲姐的熱心幫助。在此謝謝他們嘍 當然,現在看來,還有很多可以優化的地方。本程式功能還算齊全,bug還有待發現,沒有包含輸入檢測機制。精力有限,後悔當年沒有養成...