码迷,mamicode.com
首页 > 其他好文 > 详细

6-1 设计一个矩形类Rectangle (10分)

时间:2020-03-08 14:33:22      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:view   int   key   comm   tar   input   put   height   class   

 

设计一个名为Rectangle的类表示矩形。这个类包括: 两个名为width和height的double型数据域,它们分别表示矩形的宽和高。width和height的默认值都为1. 一个无参构造方法。 一个为width和height指定值的矩形构造方法。 一个名为getArea()的方法返回这个矩形的面积。 一个名为getPerimeter()的方法返回这个矩形的周长。

类名为:

Rectangle
 

裁判测试程序样例:

import java.util.Scanner;
/* 你的代码将被嵌入到这里 */

public class Main {
  public static void main(String[] args) {
    Scanner input = new Scanner(System.in);

    double w = input.nextDouble();
    double h = input.nextDouble();
    Rectangle myRectangle = new Rectangle(w, h);
    System.out.println(myRectangle.getArea());
    System.out.println(myRectangle.getPerimeter());

    input.close();
  }
}

 

输入样例:

3.14  2.78
 

输出样例:

8.7292
11.84

class Rectangle{
double width;
double height;
Rectangle()
{
width=-1;
height=-1;
}

Rectangle(double w , double h){
width=w;
height=h;
}

double getArea()
{
return width*height;

}

double getPerimeter()
{
return (width+height)*2;
}
}

 

6-1 设计一个矩形类Rectangle (10分)

标签:view   int   key   comm   tar   input   put   height   class   

原文地址:https://www.cnblogs.com/ywrxjry/p/12442033.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!