This commit is contained in:
2022-02-07 17:26:04 +01:00
parent c7ec385a55
commit 759ba2dc5d
21 changed files with 253 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,10 @@
public class Somme {
public static void main(String[] args) {
int sum = 0;
for (String nb : args) {
sum += Integer.parseInt(nb);
}
System.out.println("Somme = " + sum);
}
}