Files
apl/APL2.1/TP7_Polymorphisme/Moyenne.java

19 lines
282 B
Java
Raw Normal View History

2022-01-14 06:54:18 +01:00
public class Moyenne {
int numberOfNumber;
double total;
public Moyenne(){ //constructeur
}
double public getAverage(){
return this.numberOfNumber/this.total;
}
void public add(Number newNumber){
this.numberOfNumber++;
this.total+= newNumber.doubleValue();
}
}