簡易學生管理系統。。。。

2021-06-07 17:59:53 字數 635 閱讀 9760

簡易學生管理系統這裡使用的是單鏈表,簡單的實現新增姓名,學號,分數,以及刪除,顯示新增的資訊。

#include

#include

struct node ;

struct node *head;

struct node *last;

void cre_list()

void add_node()

void display_node()

}void find_node()

printf("姓名:

%s\t

學號:%d\t

成績:%f\n",ptr->name,ptr->num,ptr->grade);

} }

void delete_node()

}ptr = str->next;

str->next = ptr->next;

free(ptr);

printf("已經刪除

\n"); }

void clear()

}int main()

clear(); }

return 0; }

Python 簡易學生管理系統

students 輸出提示資訊 defshowinfo print 30 print 學生管理系統 簡易版 print 1.新增學生的資訊 print 2.刪除學生的資訊 print 3.修改學生的資訊 print 4.查詢學生的資訊 print 5.遍歷所有學生資訊 print 6.退出系統 pr...

python的簡易學生管理系統

python的簡易學生管理系統 以學號為唯一識別符號,因為剛學了字典,老師讓用這個來練一下手,不用函式。有學號,姓名,和成績。print 學生管理 print 1.增加。n2.查詢。n3.修改。n4.刪除。n5.退出 print student while true option int input...

python製作簡易學生管理系統

學生資訊管理系統 需求 進入系統,顯示系統功能介面,功能如下 1.增加學員資訊 2.刪除學員資訊 3.修改學員資訊 4.查詢學員資訊 5.顯示所有學員資訊 6.退出系統 系統共6個功能,使用者根據自己需求選取 1.顯示功能介面 定義函式print info,負責顯示系統功能 def print in...