把test.java救回来了
This commit is contained in:
@@ -1,24 +1,24 @@
|
||||
//Rectangle.java
|
||||
package task4;
|
||||
|
||||
public class Rectangle {
|
||||
double length;
|
||||
double width;
|
||||
|
||||
public double getPerimeter() {
|
||||
return (this.length + this.width) * 2;
|
||||
}
|
||||
|
||||
public double getArea() {
|
||||
return this.length * this.width;
|
||||
}
|
||||
|
||||
public Rectangle(double length, double width) {
|
||||
this.length = length;
|
||||
this.width = width;
|
||||
}
|
||||
|
||||
public Rectangle() {
|
||||
this(1.0, 1.0);
|
||||
}
|
||||
}
|
||||
//Rectangle.java
|
||||
package task4;
|
||||
|
||||
public class Rectangle {
|
||||
double length;
|
||||
double width;
|
||||
|
||||
public double getPerimeter() {
|
||||
return (this.length + this.width) * 2;
|
||||
}
|
||||
|
||||
public double getArea() {
|
||||
return this.length * this.width;
|
||||
}
|
||||
|
||||
public Rectangle(double length, double width) {
|
||||
this.length = length;
|
||||
this.width = width;
|
||||
}
|
||||
|
||||
public Rectangle() {
|
||||
this(1.0, 1.0);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user