用Java語(yǔ)言編寫(xiě)的人員信息管理系統(tǒng)程序簡(jiǎn)單操作方便
大小:0.02 MB 人氣: 2017-09-22 需要積分:1
推薦 + 挑錯(cuò) + 收藏(0) + 用戶評(píng)論(0)
標(biāo)簽:JAVA(102450)
基于Java的 學(xué)生信息管理系統(tǒng)程序簡(jiǎn)單容易實(shí)現(xiàn),大伙可以借鑒 。package student;//主界面程序代碼
import java.io.*;
import java.util.*;
public class StudentManager {
public static void main(String[] args) throws Exception {
menu();
}
?
public static boolean menu() throws Exception {
String infor=""; //infor用來(lái)接收輸入的內(nèi)容。
while (true) {
System.out.println("學(xué)生信息管理系統(tǒng) 其功能如下:");
System.out.print("1.添加\t");
System.out.print("2.瀏覽\t");
System.out.print("3.更新\t");
System.out.print("4.刪除\t");
System.out.print("5.保存\t");
System.out.print("6.退出");
System.out.println();
Scanner in = new Scanner(System.in);
int op = 0;
System.out.println("請(qǐng)輸入您要執(zhí)行的功能的編號(hào)(1-6)");
op = in.nextInt();
Function f=new Function();
switch (op) {
case 1:
infor=f.add();
break;
case 2:
f.browse();
break;
case 3:
infor=f.update();
break;
case 4:
infor= (String) f.delete();
break;
case 5:
f.save(infor);
break;
case 6:
f.finish(); //退出菜單界面
return false;
default:
System.out.println("輸入的數(shù)據(jù)錯(cuò)誤,請(qǐng)重新輸入!");
}
}
}
}
非常好我支持^.^
(0) 0%
不好我反對(duì)
(0) 0%
下載地址
.docx