亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java學生信息管理系統源代碼

發布時間:2020-09-04 18:53:42 來源:腳本之家 閱讀:165 作者:liuyakui 欄目:編程語言

本文實例為大家分享了java學生信息管理系統的具體代碼,實現學生信息: 增加 int[] a=new int[9] 、刪除 、查找、更改,供大家參考,具體內容如下

/*學生信息管理系統,實現學生信息: 
 *增加 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//定義菜單函數 
 { 
 int a;//定義switch語句變量 
 Scanner in=new Scanner(System.in);//實例化輸入流對象 
 System.out.println("*********學生信息管理系統功能表*********"); 
 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//定義增加函數 
 { 
 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<n;i++) 
  { 
  while(s[i].num==num1) 
  { 
   System.out.println("已存在此學號,請重新輸入"); 
   System.out.print("請輸入學號:"); 
   num1=In.nextInt(); 
  } 
  } 
  s[n].num=num1; 
  str2=String.valueOf(num1); 
  fw.write(str2+" "); 
  System.out.println(); 
  System.out.print("請輸入學生姓名:"); 
  s[n].name=In.next(); 
  fw.write(s[n].name+" "); 
  System.out.println(); 
  System.out.print("請輸入學生班級:"); 
  s[n].classAge=In.next(); 
  fw.write(s[n].classAge+"\r\n"); 
  ++n; 
  fw.close(); 
  System.out.println(); 
  System.out.print("是否繼續添加(Y/N)"); 
  str=In.next(); 
  ch=str.charAt(0); 
  while(ch!='N'&&ch!='n'&&ch!='Y'&&ch!='y') 
  { 
  System.out.print("輸入有誤,請重新輸入:"); 
  str=In.next(); 
  ch=str.charAt(0); 
  } 
  if(ch=='N'||ch=='n') 
  { 
  break; 
  } 
 } 
 System.out.println(); 
 System.out.print("是否返回主菜單(Y/N)"); 
 str1=In.next(); 
 ch2=str1.charAt(0); 
 while(ch2!='Y'&&ch2!='y'&&ch2!='N'&&ch2!='n') 
 { 
  System.out.print("輸入有誤,請重新輸入:"); 
  str1=In.next(); 
  ch2=str1.charAt(0); 
 } 
 if(ch2=='Y'||ch2=='y') 
 { 
  this.menu(); 
 } 
 if(ch2=='N'||ch2=='n') 
 { 
  System.out.println("正在退出...謝謝使用!"); 
  System.exit(0); 
 } 
 } 
 
 public void show()throws IOException 
 { 
 int i; 
 this.judge(); 
 System.out.println("本次操作共錄入"+n+"位學生!"); 
 System.out.println("你錄入的學生信息如下:"); 
 System.out.println(); 
 System.out.println("學號\t\t姓名\t班級"); 
 for(i=0;i<n;i++)    
 { 
  System.out.println(s[i].num+" "+s[i].name+" "+s[i].classAge); 
 } 
 System.out.println("系統返回主菜單!"); 
 this.menu(); 
 } 
 
 public void delete()throws IOException//刪除信息功能實現 注:本功能暫時不具備可擴展性 
 { 
 this.judge(); 
 int j=0,t=0,k=0,num1; 
 char ch; 
 String str; 
 Scanner pin=new Scanner(System.in); 
 System.out.print("請輸入要刪除的學號:"); 
 num1=pin.nextInt(); 
 for(j=0;j<n;j++) 
 { 
  if(s[j].num==num1) 
  { 
  k=1; 
  t=j; 
  } 
 } 
 if(k==0) 
 { 
  System.out.println("對不起!你要刪除的學號不存在!"); 
  System.out.println("系統將返回主菜單!"); 
  this.menu(); 
 } 
 if(k==1) 
 { 
  System.out.println("你要刪除的學生信息如下:");//打印管理員要刪除的學生信息 
  System.out.println("學號\t姓名\t班級");//本功能暫時不備擴展性 
  System.out.println(s[t].num+" "+s[t].name+" "+s[t].classAge); 
  System.out.println(); 
  System.out.print("你確定要刪除(Y/N):"); 
  str=pin.next(); 
  ch=str.charAt(0); 
  while(ch!='Y'&&ch!='y'&&ch!='N'&&ch!='n') 
  { 
  System.out.print("輸入有誤,請重新輸入:"); 
  str=pin.next(); 
  ch=str.charAt(0); 
  } 
  if(ch=='N'||ch=='n') 
  { 
  System.out.println(); 
  System.out.println("系統返回主菜單!"); 
  this.menu(); 
  } 
  if(ch=='Y'||ch=='y') 
  { 
  for(j=t;j<n-1;j++) 
  { 
   s[j]=s[j+1]; 
  } 
  n--; 
  System.out.println("數據成功刪除!"); 
  System.out.println("系統返回主菜單!"); 
  this.menu(); 
  } 
 } 
 } 
 
 public void look()throws IOException 
 { 
 FileReader fr=new FileReader("F://javaFile//student.txt"); 
 int a; 
 while((a=fr.read())!=-1) 
 { 
  System.out.print((char)a); 
 } 
 fr.close(); 
 System.out.println("系統返回主菜單!"); 
 System.out.println(); 
 this.menu(); 
 } 
 
 public void modif()throws IOException 
 { 
 this.judge(); 
 int j=0,t=0,k=0,num2,num3,moi,c=1; 
 char ch; 
 String str,str1,str2; 
 Scanner pin=new Scanner(System.in); 
 System.out.print("請輸入要修改的學號:"); 
 num2=pin.nextInt(); 
 for(j=0;j<n;j++) 
 { 
  if(s[j].num==num2) 
  { 
  k=1; 
  t=j; 
  } 
 } 
 if(k==0) 
 { 
  System.out.println("對不起!你要修改的學號不存在!"); 
  System.out.println("系統將返回主菜單!"); 
  this.menu(); 
 } 
 if(k==1) 
 { 
  System.out.println("你要修改的學生信息如下:");//打印管理員要刪除的學生信息 
  System.out.println("學號\t姓名\t班級");//本功能暫時不備擴展性 
  System.out.println(s[t].num+" "+s[t].name+" "+s[t].classAge); 
  System.out.println(); 
  System.out.print("你確定要修改(Y/N):"); 
  str=pin.next(); 
  ch=str.charAt(0); 
  while(ch!='Y'&&ch!='y'&&ch!='N'&&ch!='n') 
  { 
  System.out.print("輸入有誤,請重新輸入:"); 
  str=pin.next(); 
  ch=str.charAt(0); 
  } 
  if(ch=='N'||ch=='n') 
  { 
  System.out.println(); 
  System.out.println("系統返回主菜單!"); 
  this.menu(); 
  } 
  while(c==1) 
  { 
  if(ch=='Y'||ch=='y') 
  { 
   System.out.println("****************************************"); 
   System.out.println("*****  1.修改學號  *****"); 
   System.out.println("*****  2.修改班級  *****"); 
   System.out.println("*****  3.修改姓名  *****"); 
   System.out.println("****************************************"); 
   System.out.print("請選擇:"); 
   moi=pin.nextInt(); 
   switch(moi) 
   { 
   case 1:System.out.print("請輸入新的學號:");num3=pin.nextInt();s[t].num=num3;break; 
   case 2:System.out.print("請輸入新的班級:");str1=pin.next();s[t].classAge=str1;break; 
   case 3:System.out.print("請輸入新的姓名:");str2=pin.next();s[t].name=str2;break; 
   } 
   System.out.println("數據已成功修改!"); 
  } 
  System.out.print("是否繼續修改(Y/N)"); 
  str=pin.next(); 
  ch=str.charAt(0); 
  System.out.println(); 
  while(ch!='Y'&&ch!='y'&&ch!='N'&&ch!='n') 
  { 
   System.out.print("輸入有誤,請重新輸入:"); 
   str=pin.next(); 
   ch=str.charAt(0); 
  } 
  if(ch=='N'||ch=='n') 
  { 
   break; 
  } 
  } 
 } 
 System.out.println(); 
 System.out.println("系統返回主菜單!"); 
 this.menu(); 
 } 
 
 public static void main(String[] args)throws IOException 
 { 
 Student stu=new Student(); 
 for(int i=0;i<2;i++) 
 { 
  s[i]=new Student(); 
 } 
 stu.menu(); 
 } 
} 

更多學習資料請關注專題《管理系統開發》。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

深州市| 三河市| 泽库县| 全椒县| 河池市| 盐源县| 榆社县| 峡江县| 海门市| 昂仁县| 康马县| 宁陵县| 台南县| 安远县| 龙海市| 丰原市| 丽水市| 湘阴县| 静宁县| 乌兰察布市| 民乐县| 左权县| 荣成市| 威海市| 自贡市| 曲阳县| 阿荣旗| 桐庐县| 遂平县| 揭东县| 长垣县| 禹城市| 卢龙县| 文水县| 玛曲县| 奉节县| 光泽县| 沙田区| 德格县| 常州市| 思茅市|