Exo somme
This commit is contained in:
parent
8af4c7fb70
commit
53b21a837a
22
Somme.java
Normal file
22
Somme.java
Normal file
@ -0,0 +1,22 @@
|
||||
import static utils.Utils.*;
|
||||
|
||||
public class Somme { // FIXME A CHANGER
|
||||
|
||||
public static final void main(String[] args) {
|
||||
|
||||
int n=3;
|
||||
|
||||
afficher("Somme", n, somme(n));
|
||||
|
||||
}
|
||||
|
||||
public static int somme(int n){
|
||||
int result = 0;
|
||||
for(int i = 0; i <= n; i++){
|
||||
result = i+result;
|
||||
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user