JAVA复习题2学案.doc

  1. 1、本文档共8页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
(三)编程题 1. 声明复数类,成员变量包括实部和虚部,成员方法包括实现复数加法、减法操作。创建运行程序类,测试银行账户类。 public class Complex { private int real,imag; Complex(int real,int imag){ this.real=real; this.imag=imag; } Complex(Complex comp){ this(comp.real,comp.imag); } Complex(){ this(0,0); } public String add(Complex comp1,Complex comp2){ this.real=comp1.real+comp2.real; this.imag=comp1.imag+comp2.imag; return toString(); } public String subtract(Complex comp1,Complex comp2){ this.real=comp2.real-comp1.real; this.imag=comp2.imag-comp1.imag; return toString(); } public String toString(){ return (+this.real+++this.imag+i); } public static void main(String[] args) { Complex comp1=new Complex(1,2); Complex comp2=new Complex(2,3); Complex result_comp=new Complex(); result_comp.add(comp1,comp2); System.out.println(comp1+++comp2+=+result_comp); result_comp.subtract(comp1, comp2); System.out.println(comp2+-+comp1+=+result_comp); } } 2. 采用面向对象的程序设计方法编写一个计算矩形和椭圆形面积的程序。要求:定义面积接口以增强程序的扩展性。 public interface Area { public abstract double area(); } public class Rectangle implements Area { protected double length, width; // 长度和宽度 Rectangle(double length, double width)// 构造方法 { this.length = length; this.width = width; } public double area() // 计算矩形面积,实现Area接口中的抽象方法 { return this.width * this.length; } public String toString() { return 一个矩形,长度 + this.length + ,宽度 + this.width + ,面积为 + this.area(); } public static void main(String args[]) { System.out.println(new Rectangle(10, 20).toString()); } } public class Ellipse implements Area { private int x, y; Ellipse(int x, int y) { this.x = x; this.y = y; } public double area() { // TODO Auto-generated method stub return Math.PI * x * y; } public static void main(String args[]) { Ellipse e = new Ellipse(20, 10); System.out.print(椭圆的长轴为: + e.x + ,椭圆的短轴为: + e.y + ,椭圆的面积为: + e.area()); } } 3. 声明一个Average接口,其中约定求平均值的方法;声明多个类实现Average接口,分别给出求平

文档评论(0)

4753333 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档