diff --git a/BCADIVA.html b/BCADIVA.html new file mode 100644 index 0000000..e69de29 diff --git a/Demo.java b/Demo.java new file mode 100644 index 0000000..a3449a4 --- /dev/null +++ b/Demo.java @@ -0,0 +1,16 @@ +public class Demo +{ + public static void main(String args[]) + { + int num, sum, dummy; + sum=0; + System.out.println("The arguements passed on command line are .."); + for (num=0; num + + + + Document + + +

This is GitDemo

+

This is GitDemo

+

This is GitDemo

+ + \ No newline at end of file diff --git a/myfile.txt b/myfile.txt new file mode 100644 index 0000000..e69de29 diff --git a/sum.java b/sum.java new file mode 100644 index 0000000..0b25fe3 --- /dev/null +++ b/sum.java @@ -0,0 +1,13 @@ +public class Sum { + + public static int sum(int n,int m){ + return n+m; + } + + public static void main(String[] args) { + + int ans = sum(5,5); + + System.out.println(ans); + } +}