Files
DEV/DEV.2.1/TP/TP1-introduction/Somme.java

7 lines
230 B
Java
Raw Normal View History

2025-01-27 20:32:32 +01:00
public class Somme {
public static void main(String[] args) {
int somme = Integer.parseInt(args[0]) + Integer.parseInt(args[1]);
System.out.println("La somme des nombres est : " + somme);
}
}