当前位置:首页 » 编程语言 » java设计一个长方形类

java设计一个长方形类

发布时间: 2024-08-02 17:11:05

java定义长方形类Rect ,包含三个属性长len ,宽width,高height和一个计算体积

public class Rect {
private double len;
private double width;
private double height;

//体积
public double volume () {
return this.len * this.width * this.height;
}

public double getLen() {
return len;
}

public void setLen(double len) {
this.len = len;
}

public double getWidth() {
return width;
}

public void setWidth(double width) {
this.width = width;
}

public double getHeight() {
return height;
}

public void setHeight(double height) {
this.height = height;
}
}
class RectTest {
public static void main(String[] args) {
Rect rect = new Rect();
rect.setLen(5);
rect.setWidth(7);
rect.setHeight(9);
double volume = rect.volume();
System.out.println("体积为 = " + volume);
}
}

⑵ 镐庢牱鐢╦ava璁捐′竴涓鎴愬憳鍙橀噺鍖呮嫭闀垮拰瀹界殑闀挎柟褰㈢被骞惰$畻闱㈢Н鍜屽懆闀...

/**
* 闀挎柟褰㈢被
*/
class Rectangle{
/**
* 瀹
*/
private double width;
/**
* 楂
*/
private double height;
/**
* 鏋勯犳柟娉
* @param width 瀹
* @param height 楂
*/
public Rectangle(double width, double height){
this.width = width;
this.height = height;
}
/**
* 璁$畻闀挎柟褰㈢殑闱㈢Н
* @return 杩斿洖闀挎柟褰㈢殑闱㈢Н
*/
public double getArea(){
return this.width * this.height;
}
/**
* 璁$畻闀挎柟褰㈢殑锻ㄩ暱
* @return 杩斿洖闀挎柟褰㈢殑锻ㄩ暱
*/
public double getGirth(){
return 2 * (this.width + this.height);
}
public double getWidth(){
return this.width;
}
public void setWidth(double width){
this.width = width;
}
public double getHeight(){
return this.height;
}
public void setHeight(double height){
this.height = height;
}
}
public class Test {
public static void main(String[] args){
Rectangle rect = new Rectangle(2,3);
System.out.println("闀挎柟褰㈢殑瀹 锛" + rect.getWidth());
System.out.println("闀挎柟褰㈢殑楂 锛" + rect.getHeight());
System.out.println("闀挎柟褰㈢殑闱㈢Н锛" + rect.getArea());
System.out.println("闀挎柟褰㈢殑锻ㄩ暱锛" + rect.getGirth());
}
}

⑶ JAVA创建一个长方形的类 急!!!在线等!!!学号是37!

import java.util.Scanner;

public class Demo_137 {

public static void main(String[] args) {
Scanner input=new Scanner(System.in);
System.out.println("请输入长和宽:");
int length=input.nextInt();
int wide=input.nextInt();
if(length==137) {
Rectangle rec=new Rectangle(length, wide);
System.out.println("周长:"+rec.perimeter());
System.out.println("面积:"+rec.area());
System.out.println("构造长方形个数:"+rec.getCount());
}

}

}

class Rectangle{
private int length,wide,count=0;
public Rectangle(int length,int wide) {
this.length=length;
this.wide=wide;
count++;
}
public int perimeter() {
int per=(length+wide)*2;
return per;
}
public int area() {
int are=length*wide;
return are;
}
public int getCount() {
return count;
}

}

热点内容
网易数据库 发布:2024-11-26 00:39:49 浏览:810
旧电脑用什么安卓模拟器 发布:2024-11-26 00:34:41 浏览:533
印度编程员 发布:2024-11-26 00:34:29 浏览:486
mac下php编译器 发布:2024-11-26 00:25:18 浏览:863
cmcc怎么改密码 发布:2024-11-26 00:21:52 浏览:958
初学python的书籍 发布:2024-11-26 00:03:56 浏览:52
php大写转小写 发布:2024-11-25 23:52:55 浏览:46
安卓哪里下载游戏安全 发布:2024-11-25 23:51:08 浏览:284
白加黑源码 发布:2024-11-25 23:48:25 浏览:388
上传的壁纸 发布:2024-11-25 23:47:47 浏览:569