feat: add Lab4

This commit is contained in:
Yadunand Prem
2022-09-15 11:21:56 +08:00
parent c4d857ed02
commit 46d4fa5e9d
116 changed files with 912 additions and 2 deletions

26
Lab1/Lab1.java Normal file
View File

@@ -0,0 +1,26 @@
import java.util.Scanner;
/**
* The main class for CS2030S Lab 1.
*
* @author Yadunand Prem
* @version CS2030S AY22/23 Semester 2
*/
class Lab1 {
public static void main(String[] args) {
// Create a scanner to read from standard input.
Scanner sc = new Scanner(System.in);
// Create a simulation. The ShopSimulation
// constructor will read the simulation parameters
// and initial events using the scanner.
Simulation simulation = new ShopSimulation(sc);
// Create a new simulator and run the simulation
new Simulator(simulation).run();
// Clean up the scanner.
sc.close();
}
}