Java Programming

Hello World

hello world program in java to start learning java programming with easy and simple examples

8/23/2021
0 views
hello-world.javaJava
import java.io.*;

class helloworld {
	public static void main(String args[ ]) {

		/* Display text on the screen */
		System.out.println("Hello World!");
	}
}


/* Output */
/* Hello World! */
javajava programminghello world

Related Examples