Skip to content

Commit

Permalink
Added hello and test java pgms
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Oct 20, 2016
0 parents commit 2850035
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 0 deletions.
Binary file added hello.class
Binary file not shown.
10 changes: 10 additions & 0 deletions hello.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
public class hello
{
public static void main (String args[])
{
for (int i=0;i<10;i++){
System.out.println("Hello World "+(i+1));
}

}
}
Binary file added test.class
Binary file not shown.
7 changes: 7 additions & 0 deletions test.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
public class test
{
public static void main (String args[])
{
System.out.println("Test Java ..");
}
}

0 comments on commit 2850035

Please sign in to comment.