欢迎来到天天文库
浏览记录
ID:50505007
大小:40.52 KB
页数:4页
时间:2020-03-10
《java典型题型参考答案-程序设计题.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、/*-------------------------------------------------------【程序设计】---------------------------------------------------------题目:使用while循环和if语句实现计算并输出1-100的偶数和,循环变量名为i,存放和的变量名为sum-------------------------------------------------------*/publicclassProg1{/**********Program****
2、******//**********End**********/}答案:publicstaticvoidmain(String[]args){inti=1,sum=0;while(i<=100){if(i%2==0)sum=sum+i;i++;}System.out.println("偶数和为"+sum);}/*-------------------------------------------------------【程序设计】---------------------------------------------------
3、------题目:定义一个名为Prog1的类,属性有平时成绩(pingshi),期末成绩(qimo),都为int类型;不带参数的构造方法,方法有计算并输出总成绩的方法calculateScore(),计算方式为:总成绩=平时成绩+期末成绩的1/2;在main方法中,创建Prog1对象s,然后调用calculateScore()方法来输出总成绩。-------------------------------------------------------*/publicclassProg1{/**********Program****
4、******//**********End**********/}答案:intpingshi;intqimo;Prog1(){pingshi=45;qimo=56;}voidcalculateScore(){doublescore=pingshi+qimo*0.5;System.out.print("分数为:"+score);}publicstaticvoidmain(String[]args){Prog1s=newProg1();s.calculateScore();}/*-----------------------------
5、--------------------------【程序设计】---------------------------------------------------------题目:现有父类Good,在此基础上派生出子类Milk,子类定义了自己的属性double类型的会员价格(vipPrice),有带参数的构造方法,覆盖了父类的show方法,调用父类被覆盖的show方法,增加打印自己的属性的语句,请实现Milk类的编写-------------------------------------------------------*/
6、classGoods{doubleunitPrice;//单价doubleaccount;//数量Goods(doubleunitPrice,doubleaccount){this.unitPrice=unitPrice;this.account=account;}doubletotalPrice(){//计算总价格returnunitPrice*account;}voidshow(){System.out.println("单价是"+unitPrice);System.out.println("购买数量为"+account);Sy
7、stem.out.println("购买商品的总金额是"+this.totalPrice());}}classMilkextendsGoods{/**********Program**********//**********End**********/}publicclassProg1{publicstaticvoidmain(String[]args){}}答案:doublevipPrice;Milk(doublen,doublep,doublevipPrice){super(n,p);this.vipPrice=vipPrice
8、;}voidshow(){super.show();System.out.println("会员价格是"+vipPrice);}/*---------------------------------------------------
此文档下载收益归作者所有