Blame view

src/noyau/Somme.java 532 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
  package noyau;
  
  import java.util.*;
  import java.util.stream.Collectors;
  
  public class Somme extends Fonctions{
  
  	public String toString(){
  		
  		return "SOMME(" + listCases.stream()
  		        .map( n -> n.getId() )
  		        .collect( Collectors.joining( "," ) )
  		        +")";
  	}
  	
  	public String getFormuleDeveloppe(){
  		
  		return "";
  	}
  	
  	public double eval() {
  	    
  		double val=0;
  
  	    if (listCases.size() != 0)
  	    	for(int i=0; i<listCases.size(); i++)
  	    		val += listCases.get(i).getValeur();
  
  	    return val;
  	}
  }