diff --git a/CSE-A/MayankBisht-1018520/demo b/CSE-A/MayankBisht-1018520/demo new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/CSE-A/MayankBisht-1018520/demo @@ -0,0 +1 @@ + diff --git a/CSE-A/MayankBisht-1018520/hello.java b/CSE-A/MayankBisht-1018520/hello.java new file mode 100644 index 0000000..a058d82 --- /dev/null +++ b/CSE-A/MayankBisht-1018520/hello.java @@ -0,0 +1,7 @@ +Class Sample +{ +public Static void main(String[] args) +{ +System.out.println("Hello World"); +} +} diff --git a/CSE-A/MayankBisht-1018520/number.java b/CSE-A/MayankBisht-1018520/number.java new file mode 100644 index 0000000..0dc6f4d --- /dev/null +++ b/CSE-A/MayankBisht-1018520/number.java @@ -0,0 +1,10 @@ +Class Sample2 +{ +public Static void main(String[] args) +{ +for(int i=1;i<=10;i++) +{ +System.out.println(i); +} +} +}