This repository has been archived on 2024-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
2021-11-29 20:20:20 +01:00

38 lines
716 B
Java

package lab7_Classe_et_tableaux;
import java.awt.Color;
/**
* @author Rémi Heredero
* @Klagarge
*/
public class Rectangle {
private double width;
private double height;
private Color color;
public Rectangle(double width, double height){
this.width = width;
this.height = height;
color = Color.RED;
}
public String toString(){
String s = "Rectangle size : ";
s += this.width;
s += " x ";
s += this.height;
s += "\n Color: ";
s += this.color;
return s;
}
public void changeColor(Color c) {
this.color = c;
}
public double area() {
return this.width * this.height;
}
}