Bonjour,
cf pièce jointe pdf
ma fonction ne semble pas correcte.
fonction qui calcule le nombre total de personnes ayant une intention de vote donnée
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 public static int calculintention(boolean intenvote,int[][]tab){ intenvote=true; int sommeintent=0; while (intenvote){ for (int i=0;i<tab.length;i++){ for (int j=0;j<tab[i].length;j++){ sommeintent = sommeintent +tab[i][j]; } } } return sommeintent; }
Partager