下載本文檔
版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
學(xué)生成績(jī)管理系統(tǒng)importjava.util.*;importjava.io.*;classStudentimplementsSerializable{ Stringname; longno; privateString[]course={"os","java","math"}; double[]cscore={0,0,0}; publicStudent(Stringname,longno,doublea,doubleb,doublec){ =name; this.no=no; this.cscore[0]=a; this.cscore[1]=b; this.cscore[2]=c; } @OverridepublicStringtoString(){ return+""+this.no+""+this.course[0]+":"+this.cscore[0] +""+this.course[1]+":"+this.cscore[1]+""+this.course[2]+":"+this.cscore[2]; }}publicclassObject{ privatestaticScannerscanner=newScanner(System.in); publicStudent[]read()throwsException{ ObjectInputStreamobjIn=newObjectInputStream(newFileInputStream("stus.data")); intnum=objIn.readInt(); Student[]stus=newStudent[num]; for(inti=0;i<num;i++){ stus[i]=(Student)objIn.readObject(); } objIn.close(); returnstus; } publicvoidadd(Student[]stus)throwsException{ Student[]s=newStudent[stus.length+1]; for(inti=0;i<s.length-1;i++){s[i]=stus[i];} System.out.print("請(qǐng)輸入要添加的學(xué)生信息:\n"+"姓名:");Stringname=scanner.next(); System.out.print("學(xué)號(hào):");longno=scanner.nextInt(); System.out.print("os成績(jī):");doublecscore0=scanner.nextDouble(); System.out.print("java成績(jī):");doublecscore1=scanner.nextDouble(); System.out.print("math成績(jī):");doublecscore2=scanner.nextDouble(); s[s.length-1]=newStudent(name,no,cscore0,cscore1,cscore2);save(s); System.out.println("添加成功!"); } publicvoiddispAll(Student[]stus){ System.out.println("現(xiàn)有Student信息為:"); for(Studentstu:stus){ System.out.println(stu); } } publicvoidsave(Student[]stus)throwsException{ ObjectOutputStreamobjOut=newObjectOutputStream(newFileOutputStream("stus.data")); objOut.writeInt(stus.length); for(Studentstu:stus){ objOut.writeObject(stu); } objOut.close(); } publicvoidfindById(Student[]stus){ intno=0,i=0; System.out.print("請(qǐng)輸入學(xué)號(hào):");no=scanner.nextInt(); for(i=0;i<stus.length;i++){ if(stus[i].no==no){System.out.println(stus[i]);break;} if(stus[i].no!=no&&i==stus.length-1){System.out.println("無(wú)該生信息!");} } } publicvoidfindByName(Student[]stus){ Stringname=""; System.out.print("請(qǐng)輸入姓名:");name=scanner.next(); for(inti=0;i<stus.length;i++){ if(name.equalsIgnoreCase(stus[i].name)==true){System.out.println(stus[i]);break;} if(name.equalsIgnoreCase(stus[i].name)==false&&i==stus.length-1){System.out.println("無(wú)該生信息!");} } } publicvoiddelById(Student[]stus)throwsException{ intno=0,i=0; System.out.print("請(qǐng)輸入學(xué)號(hào):");no=scanner.nextInt(); for(i=0;i<stus.length;i++){ if(stus[i].no==no){System.out.println(stus[i]);stus[i]=null;save(stus);System.out.println("刪除成功!");break;} if(stus[i].no!=no&&i==stus.length-1){System.out.println("無(wú)該生信息!");} } } publicstaticvoidmain(String[]args)throwsException{ Objectdemo=newObject(); Student[]stus={newStudent("zhang",1,90,90,98),newStudent("wang",2,80,80,89),newStudent("li",3,70,70,79)}; System.out.print("請(qǐng)輸入操作的編號(hào):");System.out.print("\n"); intchoice=0; do{ System.out.println("1添加2顯示所有學(xué)生信息3按學(xué)號(hào)查找4按姓名查找5按學(xué)號(hào)刪除6保存0退出"); choice=scanner.nextInt(); switch(choice){ case1:demo.add(demo.read());break; case2:demo.dispAll(demo.read());break; case3:demo.findById(demo.read());break; case4:demo.findByName(demo.read());break;
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 贛東學(xué)院《中外舞蹈史(一)》2023-2024學(xué)年第一學(xué)期期末試卷
- 甘肅中醫(yī)藥大學(xué)《馬屬動(dòng)物遺傳學(xué)》2023-2024學(xué)年第一學(xué)期期末試卷
- 七年級(jí)英語(yǔ)上冊(cè)Module8ChoosingpresentsUnit2Sheoftengoestoconcerts教案含反思新版外研版
- 三年級(jí)數(shù)學(xué)下冊(cè)六認(rèn)識(shí)分?jǐn)?shù)第5課時(shí)練習(xí)五教案北師大版
- 三年級(jí)科學(xué)上冊(cè)第四單元人與水8水教案首師大版1
- 九年級(jí)化學(xué)上冊(cè)第四章生命之源-水4.3質(zhì)量守恒定律同步練習(xí)新版粵教版
- 小學(xué)生場(chǎng)景描寫(xiě)課件
- 高二物理期末模擬卷(考試版A3)【測(cè)試范圍:人教版選必一選必二第一、二章】(新八省通-用)
- 2025年6月日歷表(含農(nóng)歷-周數(shù)-方便記事備忘)
- 傳染病防治的法律法規(guī)-課件
- 2024年九年級(jí)初中數(shù)學(xué)競(jìng)賽輔導(dǎo)講義及習(xí)題解答 第19講 轉(zhuǎn)化靈活的圓中角
- 托福聽(tīng)力課件
- 事業(yè)單位年度考核方案
- 2024年土地管理法
- 醫(yī)學(xué)統(tǒng)計(jì)學(xué):醫(yī)學(xué)統(tǒng)計(jì)學(xué)課后習(xí)題答案
- 框架玻璃幕墻施工工藝
- 全球50強(qiáng)藥企官網(wǎng)及LOGO匯總
- 2024年福建省投資開(kāi)發(fā)集團(tuán)有限責(zé)任公司招聘筆試參考題庫(kù)含答案解析
- 23秋國(guó)家開(kāi)放大學(xué)《法律職業(yè)倫理》形考任務(wù)1-3參考答案
- 全國(guó)自然教育中長(zhǎng)期發(fā)展規(guī)劃
- 中等職業(yè)學(xué)校2024年中等職業(yè)教育質(zhì)量年度報(bào)告
評(píng)論
0/150
提交評(píng)論