學生管理系統(陣列實現)

2021-08-14 22:27:27 字數 1127 閱讀 3446

標頭檔案:

#ifndef _student_h_

#define _student_h_

#define n 100

struct student

;typedef struct student st;

void welcome();

void show();

int input(st *stu);

void display(st *stu, int len);

void sort(st *stu, int len);

#endif

主函式:

#include #include #include "student.h"

int main()

; int num, len;

welcome();

system("clear");

while(1) }

return 0;

}各個函式模組:

#include #include #include #include "student.h"

void welcome()

void show()

int input(st *stu)

scanf("%s", &stu[i].***);

scanf("%d", &stu[i].id);

scanf("%d", &stu[i].chinese);

scanf("%d", &stu[i].math);

} return len;

}void display(st *stu, int len)

}void find(st *stu, int len) }}

void sort(st *stu, int len)}}

for(i = 0; i < len; i++)

}else if(2 == choice)}}

for(i = 0; i < len; i++)

}else

}

這個系統比較low,用的陣列和結構體完成的,實現了四種功能,第乙個功能可以輸入學生資訊,第二個功能可以檢視學生資訊,第三個功能可以查詢學生資訊, 第四個功能可以排序。



順序表(陣列)實現學生管理系統

此為資料結構演算法設計實驗題目 define crt secure no warnings include include include void createnode int findnode struct student student,char name void searchthenode...

PHP 學生管理系統實現

最近學校開了php課程,順便寫了個作業,分享一下吧。都是很簡單的東西,新手用得著 省略部分前端 首先是登入的校驗 session start user post username pass post password session user user enter post login undo 管...

Python實現學生管理系統

from prettytable import prettytable class studentinfo def init self print print 學生管理系統 v1.0 print 1 新增學生 print 2 顯示所有學生 print 3 查詢學生 print 4 修改學生 prin...