Fixed the repository

This commit is contained in:
Sage The DM 2024-06-24 08:18:59 +02:00
parent d3092e64bf
commit b2cded4072
318 changed files with 8017 additions and 144 deletions

12
Code/math2o2/src/App.java Normal file
View file

@ -0,0 +1,12 @@
import java.util.Random;
import java.util.Scanner;
public class App {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
Random random = new Random();
int randomNumber = random.nextInt(10) + 1;
}
}