練習 學生管理系統

2021-09-05 08:43:51 字數 1696 閱讀 6081

/*

* 學生管理系統

* * 1.定義學生類

* 2.學生管理系統的主介面的**編碼

* 3.學生管理系統的檢視所有學生的**編寫

* 4.學生管理系統的新增學生的**編寫

* 5.學生管理系統的刪除學生的**編寫

* 6.學生管理系統的修改學生的**編寫

* */

public class studentmanager }}

public static void findallstudent(arraylistarrl)

// \t是tap鍵的文字寫法

system.out.println("學號\t姓名\t年齡\t性別\t家庭位址");

for(int a=0;aarrl)// 這個大括號是switch

} // 這個大括號是while

}// 這個大括號是main方法

// 檢視所有學生資料方法

public static void findallstudent(arraylistarrl)

system.out.println("學號\t姓名\t年齡");

for (int a = 0; a < arrl.size(); a++)

system.out.println("已載入所有學生資料");

}// 這個大括號是findallstudent

public static void addnewstudent(arraylistarrl)

} // 這個大括號是for迴圈

// 如果index=-1,說明上面遍歷後沒有相同的學號

if (index == -1) else

} // 這個大括號是while

system.out.println("請輸入姓名");

string name = sc.nextline();

system.out.println("請輸入年齡");

string age = sc.nextline();

// 鍵盤錄入的資訊賦值給學生類

student s = new student();

s.setid(id);

s.setname(name);

s.setage(age);

// 學生類的資訊賦值給集合arrl

arrl.add(s);

system.out.println("新增成功");

}// 這個大括號是addnewstudent

public static void deletestudent(arraylistarrl)

while (true)

}// 如果標記==-1,說明沒有匹配的學號,return重新輸入

if (index == -1) else

} // 這個大括號是while

}// 這個大括號是deletestudent

public static void updatestudent(arraylistarrl)

while(true)

}//這個大括號是for

//如果index==-1,沒找到匹配資訊

if(index==-1)else

}//這個大括號是while

}//這個大括號是updatestudent

}// 這個大括號是類的

學生管理系統

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...