Developpement/23DEV1.1/TPS2/TP01/controle/Manie/Manie.java

17 lines
275 B
Java
Raw Permalink Normal View History

2024-12-09 11:53:11 +01:00
import java.util.Random;
public class ManieTest{
public Manie(){
super();
}
public int RempTab(){
Random r=new Random();
int[81] tab = new int[];
for(int i = 0 ; i < 81 ; i++){
tab[i] = 1 + r.nextInt(9);
}
}
public void Tableau(int[] a){
System.out
}
}