DEV/DEV2.1/TP2/Compteur.java

30 lines
443 B
Java
Raw Normal View History

2023-02-13 11:26:06 +01:00
public class Compteur
{
private int compte;
public Compteur(int start)
{
this.compte = start;
}
public void plusUn()
{
this.compte++;
}
public String toString()
{
return Integer.toBinaryString(this.compte);
}
public static void main(String[] args)
{
Compteur test = new Compteur(5);
while (test.compte<10)
{
System.out.println(test.toString());
test.plusUn();
}
}
}