This commit is contained in:
Simoes Lukas
2025-03-27 13:35:54 +01:00
parent 376861b608
commit fe693705bf
90 changed files with 1188 additions and 24 deletions

9
DEV2.1/TDs/Somme.java Normal file
View File

@@ -0,0 +1,9 @@
import java.awt.*;
import java.io.*;
public class Somme {
public static void main(String[] args) {
InputStreamReader lecture = new InputStreamReader(System.in);
BufferedReader flux = new BufferedReader(lecture);
}
}