aboutsummaryrefslogtreecommitdiff
path: root/semestre 4/java/tme/tp3/Roue.java
blob: bcae13e8567d789d0f371d18a1599e81b4a8e5c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public class Roue {
    private int diametre;

    public Roue(int d) {
        diametre = d;
    }

    public Roue() {
        diametre = 60;
    }

    public String toString() {
        return String.format("Roue{%d}", diametre);
    }
}