30 lines
591 B
Java
30 lines
591 B
Java
|
package fr.blankoworld.g5a;
|
|||
|
|
|||
|
public class SommeEntiers {
|
|||
|
|
|||
|
/**
|
|||
|
* @param args
|
|||
|
*/
|
|||
|
public static void main(String[] args) {
|
|||
|
// TODO Auto-generated method stub
|
|||
|
int longueur = args.length;
|
|||
|
int resultat;
|
|||
|
|
|||
|
if (longueur == 0) {
|
|||
|
System.out.println("Aucun param<61>tre n'a <20>t<EFBFBD> entr<74>.");
|
|||
|
}
|
|||
|
else if(longueur == 1) {
|
|||
|
System.out.println("Vous n'avez pass<73> qu'un argument : " + args[0]);
|
|||
|
}
|
|||
|
else {
|
|||
|
resultat = 0;
|
|||
|
for (int i = 0; i < args.length; i++){
|
|||
|
resultat += Integer.parseInt(args[i]);
|
|||
|
}
|
|||
|
|
|||
|
System.out.println(resultat);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|