學生管理系統

2021-08-19 19:52:10 字數 1606 閱讀 6744

student_infor_list=

#新增學生資訊

def addstu(student_infor_list):

stu_name=input("請輸入學生姓名:")

stu_***=input("請輸入學生的性別:")

stu_age=int(input("請輸入學生的年齡:"))

stuinfo={}

stuinfo["name"]=stu_name

stuinfo["***"]=stu_***

stuinfo["age"]=stu_age

#修改學生資訊

def modystu(student_infor_list):

name=input("請輸入要修改的學生的姓名:")

for i in range(0,len(student_infor_list)):

if student_infor_list[i]["name"]==name:

student_infor_list[i]["***"]==input("請輸入性別:")

student_infor_list[i]["age"]==input("請輸入年齡:")

#刪除學生資訊

def delstu(student):

name=input("請輸入要刪除的學生姓名:")

for i in range(0, len(student)):

if student[i]["name"]==name:

del student[i]

#查詢學生資訊

def seekstu(student):

name=input("請輸入要查詢的學生姓名:")

for i in range(0,len(student)):

if student_infor_list[i]["name"]==name:

print(student[i])

def printmenue():

print("*" * 30)

print(" 學生管理系統v1.0 ")

print("1.新增學生資訊")

print("2.修改學生資訊")

print("3.刪除學生資訊")

print("4.查詢學生資訊")

print("*" * 30)

printmenue()

while true:

command=input("請輸入功能序號:")

if command=="1":

addstu(student_infor_list)

print(student_infor_list)

elif command=="2":

modystu(student_infor_list)

print(student_infor_list)

elif command=="3":

delstu(student_infor_list)

print(student_infor_list)

elif command=="4":

seekstu(student_infor_list)

else:

print("輸入有誤,請重新輸入!")

學生管理系統

include stdio.h include include include struct student void print void void display struct student head struct student creat q next null display head ...

學生管理系統

任務 提供 管理員 和 使用者 乙個系統 可以檢視學生資訊 系統提供 帳號登入 資訊管理功能 管理員使用者可以對學生資訊進行 增 刪 改 查 並 同時能夠 管理賬戶 資訊 普通使用者 只能進行 對資訊的查詢功能 可以根據學號 或者 姓名查詢 1.初始化 3個檔案 配置檔案 帳號資訊檔案 學生資訊檔案...

學生管理系統

注釋 這個小的系統,主要體現了c語言的 分而治之,重用 也就是老師教函式時給我們說的最核心的思想。主要吧,就是先在開始 定義後面要使用的函式,再定義一些全域性變數 再在主函式中一一呼叫。在主函式後面 再一一的寫這些函式體 也就是乙個個小的演算法慢慢湊起來 就組成了 include include i...