BUT1
CONTROLE
DEV1.1
DEV1.2
DEV1.3
DEV2.2
TP1-Introduction
EXO 1
EXO 2
EXO 3
exo3.class
exo3.java
EXO 4
EXO 5
TP2-ComposantsGraphique
TP3-MiseEnPage
.DS_Store
.DS_Store
.gitignore
README.md
17 lines
336 B
Java
17 lines
336 B
Java
![]() |
/**
|
||
|
* DOC
|
||
|
*/
|
||
|
|
||
|
public class exo3 {
|
||
|
/**
|
||
|
* DOC
|
||
|
*/
|
||
|
public static void main(String[] args){
|
||
|
int resultat = 0;
|
||
|
for(String i : args){
|
||
|
int nombreTemporaire = Integer.parseInt(i);
|
||
|
resultat += nombreTemporaire;
|
||
|
}
|
||
|
System.out.println("La somme est : " + resultat);
|
||
|
}
|
||
|
}
|