Description
设计一个长方形类Rect,计算长方形的周长与面积。
成员变量:整型、私有的数据成员length(长)、width(宽);
构造方法如下:
(1)Rect(int length) —— 1个整数表示正方形的边长
(2)Rect(int length, int width)——2个整数分别表示长方形长和宽
成员方法:包含求面积和周长。(可适当添加其他方法)
要求:编写主函数,对Rect类进行测试,输出每个长方形的长、宽、周长和面积。
Input
输入多组数据;
一行中若有1个整数,表示正方形的边长;
一行中若有2个整数(中间用空格间隔),表示长方形的长度、宽度。
若输入数据中有负数,则不表示任何图形,长、宽均为0。
Output
每行测试数据对应一行输出,格式为:(数据之间有1个空格)
长度 宽度 周长 面积
Sample
Input
1
2 3
4 5
2
-2
-2 -3
Output
1 1 4 1
2 3 10 6
4 5 18 20
2 2 8 4
0 0 0 0
0 0 0 0
Hint
类实现
import java.util.Scanner;
class Rect {
int x,y;
public Rect(int x, int y) {
if(x>0&&y>0) {
this.x=x;
this.y=y;
}
else {
this.x=0;
this.y=0;
}
}
public int length() {
return (x+y)*2;
}
public int area() {
return x*y;
}
}
public class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
Rect rect

这篇博客介绍了如何设计一个名为Rect的长方形类,用于计算长方形的周长和面积。类包含长度和宽度作为私有数据成员,并提供构造方法来初始化边长。此外,类还包含了求周长和面积的方法。博客提到了两种实现方式:类实现和接口实现。在主函数中,Rect类被测试并输出了长、宽、周长和面积。示例输入和输出数据也进行了展示。
最低0.47元/天 解锁文章
1296

被折叠的 条评论
为什么被折叠?



