Blame view

src/noyau/Moyenne.java 559 Bytes
d8507aee   [mandjemb]   Fichiers
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  package noyau;
  
  import java.util.stream.Collectors;
  
  public class Moyenne extends Fonctions{
  	
  
  	public String toString(){
  		
  		return "MOYENNE(" + listCases.stream()
  		        .map( n -> n.getId() )
  		        .collect( Collectors.joining( "," ) )
  		        +")";
  	}
  	
  	public String getFormuleDeveloppe(){
  		
  		return "";
  	}
  	
  	public double eval() {
  	    
  		double val=0;
  
  	    try{
  	    	for(int i=0; i<listCases.size(); i++)
  	    		val += listCases.get(i).getValeur();
  
  	    	return val/ listCases.size();
  	    }
  	    catch(ArithmeticException ex){}
  	}
  }