diff --git a/CSE-B/Mayank Bangwal/MockTest1.java b/CSE-B/Mayank Bangwal/MockTest1.java new file mode 100644 index 0000000..c13b40c --- /dev/null +++ b/CSE-B/Mayank Bangwal/MockTest1.java @@ -0,0 +1,9 @@ +import java.util.*; + +class MockTest1 +{ + public static void main(String args[]) + { + System.out.println("Hello World"); + } +} \ No newline at end of file diff --git a/CSE-B/Mayank Bangwal/MockTest2.java b/CSE-B/Mayank Bangwal/MockTest2.java new file mode 100644 index 0000000..c3c1fc5 --- /dev/null +++ b/CSE-B/Mayank Bangwal/MockTest2.java @@ -0,0 +1,12 @@ +import java.util.*; + +class MockTest2 +{ + public static void main(String args[]) + { + for(int i=1; i<=10; i++) + { + System.out.println(i); + } + } +} \ No newline at end of file