23 lines
435 B
Java
23 lines
435 B
Java
public class nombre{
|
|
private int nombre;
|
|
private int max;
|
|
public nombre(){
|
|
this.nombre=4;
|
|
// il y a au minimun 4 ligne et 4 collonnes
|
|
this.max=30;
|
|
// il y a 30 ligne et collonne au max
|
|
}
|
|
public void addNombre(int n){
|
|
this.nombre+=n;
|
|
if(this.nombre<4){
|
|
this.nombre=4;
|
|
}
|
|
if(this.nombre>this.max){
|
|
this.nombre=this.max;
|
|
}
|
|
}
|
|
@Override
|
|
public String toString(){
|
|
return String.valueOf(this.nombre);
|
|
}
|
|
} |