<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
本文範例為大家分享了java實現學生成績管理系統的具體程式碼,供大家參考,具體內容如下
/* *@copyright by LzyRapx on 2016/4/12. *@name:java學生成績管理系統. *@功能:學生相關資訊,錄入,查詢,統計,修改等.... *@PS:圖形介面的學生管理系統不要求就不做了. */ import java.util.Scanner; import java.lang.*; import java.io.*; class Student { private static Student[] s=new Student[100]; //錄入學生上限 int n=0; private String name; private int num; private String classAge; private int chinese; private int math; private int english; //判斷是否有錄入學生資訊 public void judge() throws IOException { int i; char ch; String str; Scanner In=new Scanner(System.in); if(n==0) { System.out.println("你還沒有錄入任何學生資訊,是否錄入(Y/N):"); str=In.next(); ch=str.charAt(0); while(ch!='Y'&&ch!='y'&&ch!='N'&&ch!='n') { System.out.println("輸入有誤,請重新輸入:"); 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 //將異常丟擲,呼叫這個方法去處理異常,如果main方法也將異常丟擲,則交給Java虛擬機器器來處理,下同. { int a; 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.out.println("成功退出系統!!!");System.exit(0);break; } } //錄入學生資訊 public void add() throws IOException { String str,str1,str2; int i,num1,t=1; char ch,ch1; FileWriter fw=new FileWriter("E://student.txt",true); //將學生資訊錄入指定的txt檔案中 fw.write(" 錄入的學生資訊列表rnrn學號 姓名 班級 語文成績 數學成績 英語成績rn"); Scanner In=new Scanner(System.in); while(t==1) { System.out.println("請輸入學生學號:"); 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.println("請輸入學生姓名:"); s[n].name=In.next(); fw.write(s[n].name+" "); System.out.println(); System.out.println("請輸入學生班級:"); s[n].classAge=In.next(); fw.write(s[n].classAge+" "); System.out.println("請輸入學生語文成績:"); s[n].chinese=In.nextInt(); fw.write(s[n].chinese+" "); System.out.println("請輸入學生數學成績:"); s[n].math=In.nextInt(); fw.write(s[n].chinese+" "); System.out.println("請輸入學生英語成績:"); s[n].english=In.nextInt(); fw.write(s[n].english+"rn"); ++n; fw.close(); System.out.println(); System.out.println("是否繼續新增(Y/N)"); str=In.next(); ch=str.charAt(0); while(ch!='N'&&ch!='n'&&ch!='Y'&&ch!='y') { System.out.println("輸入無效,請重新輸入:"); str=In.next(); ch=str.charAt(0); } if(ch=='N'||ch=='n') { break; } } System.out.println(); System.out.print("是否返回系統主選單(Y/N)"); str1=In.next(); ch1=str1.charAt(0); while(ch1!='Y'&&ch1!='y'&&ch1!='N'&&ch1!='n') { System.out.println("輸入無效,請重新輸入:"); str1=In.next(); ch1=str1.charAt(0); } if(ch1=='Y'||ch1=='y') { this.menu(); } if(ch1=='N'||ch1=='n') { System.out.println(""); 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語文t數學t英語"); for(i=0;i<n;i++) { System.out.println(s[i].num+" "+s[i].name+" "+s[i].classAge+" "+s[i].chinese+" "+s[i].math+" "+s[i].english); } 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.println("請輸入要刪除的學號:"); 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.println("你確定要刪除(Y/N):"); str=pin.next(); ch=str.charAt(0); while(ch!='Y'&&ch!='y'&&ch!='N'&&ch!='n') { System.out.println("輸入無效,請重新輸入:"); 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("E://student.txt"); //檢視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.println("請輸入要修改的學號:"); 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("語文t數學t英語"); System.out.println(s[t].chinese+" "+s[t].math+" "+s[t].english); System.out.println(); System.out.println("你確定要修改(Y/N):"); str=pin.next(); ch=str.charAt(0); while(ch!='Y'&&ch!='y'&&ch!='N'&&ch!='n') { System.out.println("輸入無效,請重新輸入:"); 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.println("請選擇:"); 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<100;i++) { s[i]=new Student(); } stu.menu(); } }
部分效果圖:
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45