這篇文章將為大家詳細講解有關(guān)java怎樣實現(xiàn)學生信息管理系統(tǒng),小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
目前創(chuàng)新互聯(lián)已為上千家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)絡(luò)空間、網(wǎng)站托管、服務(wù)器托管、企業(yè)網(wǎng)站設(shè)計、青銅峽網(wǎng)站維護等服務(wù),公司將堅持客戶導向、應用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。
具體內(nèi)容如下
/*學生信息管理系統(tǒng),實現(xiàn)學生信息: *增加 int[] a=new int[9] *刪除 *查找 *更改 */ import java.util.Scanner;//導入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("你還沒有錄入任何學生,是否錄入(Y/N):"); str=In.next(); ch=str.charAt(0); while(ch!='Y'&&ch!='y'&&ch!='N'&&ch!='n') { System.out.print("輸入有誤,請重新輸入:"); 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);//實例化輸入流對象 System.out.println("*********學生信息管理系統(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("請選擇(0~5):"); a=in.nextInt(); while(a<0||a>5) { System.out.print("輸入超出范圍,請重新輸入:"); 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(" 錄入的學生信息列表\r\n\r\n學號 姓名 班級\r\n"); Scanner In=new Scanner(System.in); while(t==1) { System.out.print("請輸入學生學號:"); num1=In.nextInt(); for(i=0;i關(guān)于“java怎樣實現(xiàn)學生信息管理系統(tǒng)”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
當前名稱:java怎樣實現(xiàn)學生信息管理系統(tǒng)
文章URL:http://weahome.cn/article/ijjcgp.html