设计一个矩形类Rectangle

更新时间:2023-06-19 20:53:12 阅读: 评论:0

设计⼀个矩形类Rectangle
设计⼀个名为Rectangle的类表⽰矩形。这个类包括: 两个名为width和height的double型数据域,它们分别表⽰矩形的宽和⾼。width和height的默认值都为1. ⼀个⽆参构造⽅法。 ⼀个为width和height指定值的矩形构造⽅法。 ⼀个名为getArea()的⽅法返回这个矩形的⾯积。 ⼀个名为getPerimeter()的⽅法返回这个矩形的周长。
类名为:
Rectangle
裁判测试程序样例:
import java.util.Scanner;
写景的作文600字/* 你的代码将被嵌⼊到这⾥ */
public class Main {
public static void main(String[] args) {
铺多音字组词Scanner input = new Scanner(System.in);
double w = Double();
double h = Double();
Rectangle myRectangle = new Rectangle(w, h);
System.out.Area());
金成圭System.out.Perimeter());
input.clo();
}
}
输⼊样例:
3.14  2.78
结尾⽆空⾏
输出样例:
8.7292
11.84
结尾⽆空⾏
import java.util.Scanner;团建心得
class Rectangle {
private double width;
private double height;
public void width(double x) {  //获取长度
this.width=x;
}
长春供暖时间public void height(double y) {  //获取宽度
this.height=y;
wps显示分页符秋晨}
public Rectangle() {  //⽆参数构造⽅法
this.width=1.0;
this.height=1.0;
}
public Rectangle(double x,double y) {  //带参构造⽅法  this.width=x;
this.height=y;
}
public double width() {关于西湖的诗句
return width;
}
public double height() {
return height;
}
public double getArea() { //求矩形⾯积
double x=this.width;
double y=this.height;
return x*y;
}
public double getPerimeter() {  //求矩形周长
double x=this.width;
double y=this.height;
return 2*(x+y);
}
}

本文发布于:2023-06-19 20:53:12,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/993529.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:矩形   获取   样例   构造   名为   长春   写景
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图