12 lines
230 B
Java
12 lines
230 B
Java
|
public class Q2{
|
||
|
public static void main(String[] args) {
|
||
|
Moyenne2 test = new Moyenne2();
|
||
|
test.add(10);
|
||
|
test.add(3.333);
|
||
|
test.add(3.333);
|
||
|
test.add(3.333);
|
||
|
test.add(3.333);
|
||
|
System.out.println(test.getAverage());
|
||
|
}
|
||
|
}
|