《JAVA程序設(shè)計(jì)》期末考試實(shí)操題庫及答案_第1頁
《JAVA程序設(shè)計(jì)》期末考試實(shí)操題庫及答案_第2頁
《JAVA程序設(shè)計(jì)》期末考試實(shí)操題庫及答案_第3頁
《JAVA程序設(shè)計(jì)》期末考試實(shí)操題庫及答案_第4頁
《JAVA程序設(shè)計(jì)》期末考試實(shí)操題庫及答案_第5頁
已閱讀5頁,還剩5頁未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡介

(1)編程實(shí)現(xiàn)通過鍵盤輸入數(shù)據(jù)并對數(shù)據(jù)進(jìn)行求最大值和最小值處理綜合運(yùn)用Eclipse軟件,編寫一個(gè)字符界面的Java?Application?程序,接受用戶輸入的10個(gè)整數(shù),并輸出這10個(gè)整數(shù)中的最大值、最小值。(2)編程實(shí)現(xiàn)定義接口并實(shí)現(xiàn)接口計(jì)算圓柱和圓錐的體積綜合運(yùn)用Eclipse軟件,編寫一個(gè)Java程序,定義接口并實(shí)現(xiàn)接口計(jì)算圓柱和圓錐的體積。提示:關(guān)鍵字:interfaceimplements接口名:Cubage(體積)類名:Cylinde(圓柱)、Cone(圓錐)圓柱體積:3.14*r*r*h圓錐體積:3.14*r*r*h/3

(3)編程實(shí)現(xiàn)通過鍵盤輸入一個(gè)正數(shù)n,并求出1+…+n的和綜合運(yùn)用Eclipse軟件,編寫一個(gè)字符界面的Java?Application?程序,接受用戶任意輸入1個(gè)正數(shù)n,并輸出1+…+n的和。提示:Scannersc=new?Scanner(System.in);intnum=sc.nextInt();(4)編程實(shí)現(xiàn)抽象類綜合運(yùn)用Eclipse軟件,編寫java程序,定義一個(gè)抽象Shape類,再創(chuàng)建子類Rectangle和子類Trapezoid,另外再分別創(chuàng)建對象傳入?yún)?shù)計(jì)算并打印出各自的面積。提示:(1)關(guān)鍵字:abstractextends(2)類名Shape(形狀)、Rectangle(長方形)、Trapezoid(梯形)(3)長方形面積:a*b梯形面積:(a+b)*h/2(5)編程實(shí)現(xiàn)封裝綜合運(yùn)用Eclipse軟件,編寫java程序,定義一個(gè)Person類,并對此類屬性的年齡及體重進(jìn)行隱藏,再利用此類創(chuàng)建一個(gè)對象并進(jìn)行自我介紹,Person類的屬性如下圖。注:訪問weight范圍為50-300,訪問age范圍為18-120,當(dāng)不在上面的范圍時(shí),打印“不合格”提示:關(guān)鍵字:privategetter()setter()(6)編程實(shí)現(xiàn)多態(tài)綜合運(yùn)用Eclipse軟件,編寫java程序,定義一個(gè)抽象Animal類,再創(chuàng)建個(gè)子類Dog類和Cat類,另外再創(chuàng)建一個(gè)Student類,并完善圖示功能。學(xué)生小新飼養(yǎng)寵物——寵物貓和寵物狗進(jìn)食提示:關(guān)鍵字:abstractextends實(shí)操考核課程試題(1)參考答案packagetest1;importjava.io.*;publicclasstest1{ /** *@paramargs */ publicstaticvoidmain(String[]args){ //TODOAuto-generatedmethodstub inti,n=10,max=0,min=0,temp=0; System.out.println("請從鍵盤上輸入10個(gè)整數(shù)!"); try{ BufferedReaderbr=newBufferedReader(newInputStreamReader(System.in)); max=min=Integer.parseInt(br.readLine()); }catch(IOExceptione){}; for(i=2;i<=n;i++){ try{ BufferedReaderbr=newBufferedReader(newInputStreamReader(System.in)); temp=Integer.parseInt(br.readLine()); if(temp>max)max=temp; if(temp<min)min=temp; }catch(IOExceptione){}; } System.out.println("max="+max+"\nmin="+min); }}實(shí)操考核課程試題(2)參考答案packagetest2;interfaceCubage//聲明接口{ publicstaticfinaldoublePI=3.14;//常量 publicdoubledoCubage();//抽象方法}classCylinderimplementsCubage{//創(chuàng)建圓柱類,實(shí)現(xiàn)Cubage接口 doubler;//圓柱底半徑 doubleh;//圓柱高 publicCylinder(doubler,doubleh) {//圓柱構(gòu)造方法 this.r=r; this.h=h; } publicdoubledoCubage() {//重寫接口的doCubage()方法,實(shí)現(xiàn)多態(tài) return(Cubage.PI*r*r*h); }}classConeimplementsCubage{//創(chuàng)建圓錐類,實(shí)現(xiàn)Cubage接口 doubler;//圓錐底半徑 doubleh;//圓錐高 publicCone(doubler,doubleh) {//圓錐構(gòu)造方法 this.r=r; this.h=h; } publicdoubledoCubage() {//重寫接口的doCubage()方法,實(shí)現(xiàn)多態(tài) return(Cubage.PI*r*r*h/3); }}publicclasstest2{ /** *@paramargs */ publicstaticvoidmain(String[]args){ //TODOAuto-generatedmethodstub Cylindercylinder=newCylinder(2.5,4);//創(chuàng)建圓柱對象 Conecone=newCone(3,4);//創(chuàng)建圓錐對象 System.out.println("圓柱的體積是:"+cylinder.doCubage()); System.out.println("圓錐的體積是:"+cone.doCubage()); }}實(shí)操考核課程試題(3)參考答案packagetest3;importjava.util.*;publicclasstest3{ /** *@paramargs */ publicstaticvoidmain(String[]args){ //TODOAuto-generatedmethodstub inti=0; intsum=0; System.out.println("請任意輸入1到10000以內(nèi)的整數(shù)!"); Scannersc=newScanner(System.in); intnum=sc.nextInt(); for(i=1;i<=num;i++) { sum+=i; } System.out.println("1+..+"+(i-1)+"="+sum); }}實(shí)操考核課程試題(4)參考答案packagetest4;abstractclassShape//聲明抽象類{ abstractdoubledoArea();//抽象方法}classRectangleextendsShape{//創(chuàng)建長方形類, doublea;//長方形長 doubleb;//長方形寬 publicRectangle(doublea,doubleb) {//長方形構(gòu)造方法 this.a=a; this.b=b; } publicdoubledoArea() {//重寫接口的doArea()方法,實(shí)現(xiàn)多態(tài) return(a*b); }}classTrapezoidextendsShape{//創(chuàng)建梯形類 doublea;//梯形上底 doubleb;//梯形下底 doubleh;//梯形高 publicTrapezoid(doublea,doubleb,doubleh) {//梯形構(gòu)造方法 this.a=a; this.b=b; this.h=h; } publicdoubledoArea() {//重寫接口的doArea()方法,實(shí)現(xiàn)多態(tài) return((a+b)*h/2); }}publicclasstest4{ /** *@paramargs */ publicstaticvoidmain(String[]args){ //TODOAuto-generatedmethodstub Rectanglere=newRectangle(3,4);//創(chuàng)建長方形對象 Trapezoidtr=newTrapezoid(3,4,5);//創(chuàng)建梯形對象 System.out.println("長方形的面積是:"+re.doArea()); System.out.println("梯形的面積是:"+tr.doArea()); }}實(shí)操考核課程試題(5)參考答案packagetest5;classPerson{ Stringname; privatedoubleweight; privateintage; Stringaddress; publicdoublegetWeight(){ returnweight; } publicvoidsetWeight(doubleweight){ if(weight>50&&weight<300) { this.weight=weight; } else System.out.println("體重不合格?。?!"); } publicintgetAge(){ returnage; } publicvoidsetAge(intage){ if(age>18&&age<120){ this.age=age; } else System.out.println("年齡不合格!?。?); }}publicclasstest5{ /** *@paramargs */ publicstaticvoidmain(String[]args){ //TODOAuto-generatedmethodstub Personp=newPerson(); ="zhangsan31805001"; p.address="凱里"; p.setAge(20); p.setWeight(100); System.out.println("大家好!我叫"++"我來自"+ ""+p.address+"今年我"+p.getAge()+"歲,\n我體重"+p.getWeight()); }}實(shí)操考核課程試題(6)參考答案packagetest6;abstractclassAnimal{ Stringname; publicAnimal(Stringname){ =name; } publicabstractvoideat();}classCatextendsAnimal{ publicCat(Stringname){ super(name); } publicvoideat(){ System.out.println("我是一只可愛的小貓,我叫"++",我正在吃魚。"); }}classDogextendsAnimal{ publicDog(Stringname){ super(name); } publicvoideat(){ System.out.println("我是一只可愛的小狗,我叫"++",我正在吃骨頭。"); }}class

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論