ImageVerifierCode 换一换
格式:DOCX , 页数:12 ,大小:18.88KB ,
资源ID:21312211      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/21312211.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(JAVA期末考试题库中的编程题Word下载.docx)为本站会员(b****6)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

JAVA期末考试题库中的编程题Word下载.docx

1、double getArea():求一个形状的面积double getPerimeter ():求一个形状的周长类Rectangle实现ShapeArea接口,并有以下属性和方法: 属性width: double型,表示长方形的宽度height:double型,表示长方形的长度 方法Rectangle(double w, double h):构造函数toString():输出矩形的描述信息,如“width=1.0,height=2.0,perimeter=6.0,area=2.0”类Test作为主类要完成测试功能 生成Rectangle对象,长方形的宽度和长度分别为1和2 调用对象的toStr

2、ing方法,输出对象的描述信息( 注:程序框架已给出,请填写完整。)import java.io.*;interface ShapeArea /接口定义2分class Rectangle implements ShapeArea /属性定义1分Rectangle(double w, double h) /构造函数定义 (1分) public double getPerimeter() /方法定义 (1分)public double getArea() /方法定义(1分)public String toString() / 方法定义(2分)public class Test public sta

3、tic void main(String args) /main方法定义 (2分)6编写一个完整的Java Application 程序,包括ShapeArea接口、MyTriangle类、Test类,具体要求如下:接口ShapeArea:类MyTriangle:实现ShapeArea接口,另有以下属性和方法: 属性x,y,z: double型,表示三角形的三条边s: 周长的1/2(注:求三角形面积公式为 ,s=(x+y+z)/2 ,开方可用Math.sqrt(double)方法) 方法MyTriangle(double x, double y, double z):构造函数,给三条边和s赋初

4、值。输出矩形的描述信息,如“three sides:3.0,4.0,5.0,perimeter=12.0,area=6.0”Test类作为主类要完成测试功能 生成MyTriangle对象7编写一个完整的Java Application 程序。该程序包含类Person、Student、TestStudent,具体要求如下:类Person属性name : String对象,表示一个人姓名sex: char类型,用来表示性别id:String对象,表示身份证号phone:String对象,表示联系电话email :String对象,表示E-mail地址 方法Person(Name name, cha

5、r sex, String id):String getId() :获得身份证号void setEmail(String email) :设置E-mail地址void setPhone(String phone) :设置联系电话public String toString() :返回个人的各项信息,包括姓名、性别等上述属性类Student从Person类派生,增加了以下属性和方法:sNo: long类型,表示学生的学号sClass: String对象,表示学生的班级Student(long sNo, String name, char sex, String id):setClass(Stri

6、ng sClass): 设置学生的班级信息返回学生的各项信息,包括学号、班级、姓名等上述属性(3)类TestStudent作为主类要完成测试功能(注:class Personprotected String name;protected char sex;protected String id;protected String phone;protected String email;Person(String name, char sex, String id) /定义构造方法 (2分)String getId() /定义方法 (1分)String getName()/定义方法 (1分)vo

7、id setEmail(String email) /定义方法 (1分)void setPhone(String phone) /定义方法 (1分)public String toString() String s = new String( nt 姓名: + name + nt 性别: + sex);if (id != null) s += nt 身份证号: + id;if (phone !nt 联系电话: + phone;if (email !nt 联系email: + email;return s; class Student extends Person/定义属性 (1分)Studen

8、t(long sNo, String name, char sex, String id) /定义构造方法 (2分)void setClass(String sClass) /定义方法 (1分) + sex +nt 学号:+ sNo );if(sClass!=null) s+=nt 班级:+sClass;public class TestStudent public static void main(String args) Student aStudent = new Student(2004001, 王非, 女,2202198506070222);aStudent.setPhone(880

9、78549aStudent.setEmail(wangfeiSystem.out.println(student info: + aStudent);8编写一个完整的Java Application 程序。包含抽象类Shape,MyCircle类及Test类,具体要求如下:抽象类Shape:类 MyCircle:由Shape类派生的具体类,除实现Shape类中的方法外,另有以下属性和方法:radius: double类型,表示圆的半径MyCircle(double r):toString()方法 :输出圆的描述信息,如“radius=1.0, perimeter=6.28, area=3.14

10、” 生成MyCircle对象,半径为1.0abstract class Shape /抽象类定义 (3分)class MyCircle extends Shapefinal double PI=3.14;double radius;MyCircle(double r) /构造函数定义 (1分)public double getPerimeter()/方法定义 (1分)public double getArea()/方法定义(1分)-答案-1(application占2分)public class Welcome public static void main(String args) (1分)

11、 System.out.println(Hello World! (1分) (applet占4分)import java.awt.Graphics;import java.applet.Applet; (1分)public class Welcome extends Applet (1分)String s;public void init() s= Hello World!; (1分)public void paint(Graphics g) g.drawString(s,25,25);2import java.io.*;public class StudentFile static File

12、OutputStream fos;public static final int lineLength = 81;public static void main(String args) throws IOException byte phone = new bytelineLength;byte name = new bytelineLength;try fos = new FileOutputStream(phoneno.datcatch(FileNotFoundException e) while (true) System.out.println(Enter a name (enter

13、 quit to quit)readLine(name);if (.equalsIgnoreCase(new String(name,0,0,4) break;Enter the phone numberreadLine(phone);for (int i=0;phone!= 0;i+) fos.write(phone);fos.write(,name!i+) fos.write(name);nfos.close();private static void readLine(byte line) throws IOException int i=0,b=0;while (iLINELENGTH

14、-1)&(B=SYSTEM.IN.READ()!=N) linei+ = (byte)b; line=(byte) 0;3(6分)/Welcome.java Welcome to Java World!/Welcome.html(2分)4(8分) byte no = new bytelineLength;studentno.datEnter the student numberreadLine(no);no! fos.write(no);5public class Test /主类定义2分public static void main(String args) Rectangle r=new

15、Rectangle(1,2);System.out.println(r.toString(); public abstract double getPerimeter();public abstract double getArea();class Rectangle implements ShapeArea double width, height; /属性定义1分Rectangle(double w, double h) /构造函数定义1分 width=w; height=h;public double getPerimeter() /1分 return 2*( width+height)

16、;public double getArea() /1分 return width*height;public String toString() /2分 return width=+width+,height=+height+,perimeter=+getPerimeter()+,area=+getArea();6/参考源程序如下,具体评分标准见程序注释public class TestShape /主类定义1分 MyTriangle t=new MyTriangle(3.0,4.0,5.0);System.out.println(t.toString();class MyTriangle

17、implements ShapeArea double x,y,z;double s;MyTriangle(double t1,double t2, double t3) /构造方法1分 x=t1; y=t2; z=t3; s=(x+y+z)/2;public double getPerimeter() return x+y+z; /求周长方法2分public double getArea() return Math.sqrt(s*(s-x)*(s-y)*(s-z); / 求面积方法2分public String toString() / toString()2分three sides:+x+

18、y+z+perimeter=7/定义构造方法 (2分)Person(String name, char sex, String id) this.name = name;this.sex = sex;this.id = id;/定义方法 (1分)String getId()return id;String getName() return name;void setEmail(String email) this.email = email;void setPhone(String phone) this.phone = phone;long sNo;String sClass;Student(long sNo, String name, char sex, String id) super(name,sex,id);this.sNo=sNo;void setClass(String sClass) this.sClass=sClass;

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1