概述
设计一个名为Rectangle的类表示矩形。这个类包括:
- 两个名为width和height的double类型数据域,它们分别表示矩形的宽和高。width和height的默认值都为1。
- 一个用于创建默认矩形的无参构造方法。
- 一个创建指定width和height值的矩形的构造方法。
- 一个名为getArea()的方法,返回该矩形的面积。
- 一个名为getPerimeter()的方法,返回周长。
import java.util.Scanner;
class Rectangle1 {
double width=1.0;
double height=1.0;
Rectangle1(){};
Rectangle1(double width, double height) {
this.width = width;
this.height = height;
}
public double getArea() {
return width*height;
}
public double getPerimeter() {
return (width+height)*2;
}
}
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc=new Scanner (System.in);
for(int i=0;i<2;i++) {
double width=sc.nextDouble();
double height=sc.nextDouble();
Rectangle1 rec=new Rectangle1(width,height);
System.out.println(width+" "+height+" "+rec.getArea()+" "+rec.getPerimeter());
}
}
}
- double width=1.0,double height=1.0,设置默认值为1。
最后
以上就是微笑板凳为你收集整理的pta 设计一个矩形类Rectangle java的全部内容,希望文章能够帮你解决pta 设计一个矩形类Rectangle java所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复