ADD file via upload

main
pc9arzikf 4 months ago
parent ae53c1cad1
commit e36b6e7939

@ -0,0 +1,51 @@
package LSP;
/**
* ?public?
* @author
* @version 1.0
* @created 23-10-2025 20:04:42
*/
class Rectangle implements Shape {
private double height;
private double width;
public Rectangle(){
}
public void finalize() throws Throwable {
}
/**
*
* @param width
* @param height
*/
public Rectangle(double width, double height){
}
@Override
public double getArea(){
return 0;
}
/**
*
* @param height
*/
public void setHeight(double height){
}
/**
*
* @param width
*/
public void setWidth(double width){
}
}//end Rectangle
Loading…
Cancel
Save