For full functionality of this site it is necessary to enable JavaScript. Here are the instructions how to enable JavaScript in your web browser.

All for Joomla All for Webmasters
Close

Java: Hello World!

package Chapter1_1_2;
/**
*
* @author Siavash Bakhshi
*/
public class HelloWorld{
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
     // (Display five messages)
     // Write a program that displays Welcome to Java five times.
     System.out.println("Welcome to JAVA!");
     System.out.println("Welcome to JAVA!");
     System.out.println("Welcome to JAVA!");
     System.out.println("Welcome to JAVA!");
     System.out.println("Welcome to JAVA!");
     }
}
Java: Hello World (560 downloads)