本文實(shí)例為大家分享了java學(xué)生信息管理系統(tǒng)的具體代碼,實(shí)現(xiàn)學(xué)生信息: 增加 int[] a=new int[9] 、刪除 、查找、更改,供大家參考,具體內(nèi)容如下
創(chuàng)新互聯(lián)是一家專注于成都做網(wǎng)站、網(wǎng)站設(shè)計(jì)、外貿(mào)營銷網(wǎng)站建設(shè)與策劃設(shè)計(jì),盈江網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)10年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:盈江等地區(qū)。盈江做網(wǎng)站價(jià)格咨詢:028-86922220
/*學(xué)生信息管理系統(tǒng),實(shí)現(xiàn)學(xué)生信息: *增加 int[] a=new int[9] *刪除 *查找 *更改 */ import java.util.Scanner;//導(dǎo)入java輸入流 import java.lang.*; import java.io.*; class Student { private static Student[] s=new Student[2]; int n=0; private String name; private int num; private String classAge; public void judge()throws IOException { int i; char ch; String str; Scanner In=new Scanner(System.in); if(n==0) { System.out.print("你還沒有錄入任何學(xué)生,是否錄入(Y/N):"); str=In.next(); ch=str.charAt(0); while(ch!='Y'&&ch!='y'&&ch!='N'&&ch!='n') { System.out.print("輸入有誤,請(qǐng)重新輸入:"); str=In.next(); ch=str.charAt(0); } if(ch=='Y'||ch=='y') { this.add(); } if(ch=='N'||ch=='n') { this.menu(); } } } public void menu()throws IOException//定義菜單函數(shù) { int a;//定義switch語句變量 Scanner in=new Scanner(System.in);//實(shí)例化輸入流對(duì)象 System.out.println("*********學(xué)生信息管理系統(tǒng)功能表*********"); System.out.println("***** 1.增加 *****"); System.out.println("***** 2.顯示 *****"); System.out.println("***** 3.修改 *****"); System.out.println("***** 4.刪除 *****"); System.out.println("***** 5.查看 *****"); System.out.println("***** 0.退出 *****"); System.out.println("****************************************"); System.out.print("請(qǐng)選擇(0~5):"); a=in.nextInt(); while(a<0||a>5) { System.out.print("輸入超出范圍,請(qǐng)重新輸入:"); a=in.nextInt(); } switch(a) { case 1:this.add();break; case 2:this.show();break; case 3:this.modif();break; case 4:this.delete();break; case 5:this.look();break; case 0:System.exit(0);break; } } public void add()throws IOException//定義增加函數(shù) { String str,str1,str2; int i,num1,t=1; char ch,ch2; FileWriter fw=new FileWriter("F://javaFile//student.txt",true); fw.write(" 錄入的學(xué)生信息列表\r\n\r\n學(xué)號(hào) 姓名 班級(jí)\r\n"); Scanner In=new Scanner(System.in); while(t==1) { System.out.print("請(qǐng)輸入學(xué)生學(xué)號(hào):"); num1=In.nextInt(); for(i=0;i
更多學(xué)習(xí)資料請(qǐng)關(guān)注專題《管理系統(tǒng)開發(fā)》。
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。