This is a simple Hello World java program to display the words “Hello World!!!” on the screen.
1 2 3 4 5 6 |
public class HelloWorld { public static void main(String args[]) { System.out.println("Hello World!!!"); } } |
This is a simple Hello World java program to display the words “Hello World!!!” on the screen.
1 2 3 4 5 6 |
public class HelloWorld { public static void main(String args[]) { System.out.println("Hello World!!!"); } } |