flut d'octet

This commit is contained in:
2024-03-25 14:56:28 +01:00
parent 0bf4ebd6b6
commit f411998b31
30 changed files with 335 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
import java.util.Arrays;
public class Duplication{
private double[] tab;
public Duplication(){
this.tab = new double[10];
Arrays.fill(this.tab,5.8);
}
public String toString(){
System.out.print(Arrays.toString(this.tab));
System.out.println();
return "";
}
public static void main (String[] args){
Duplication tab = new Duplication();
tab.toString();
}
}