Q:

Java program to print \'Hello world\' (First program in Java)

belongs to collection: Java Basic Programs

0

Java program to print 'Hello world' (First program in Java)

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program to print "Hello World" in Java

public class HelloWorld
{
     public static void main(String []args)
     {
		//printing the message
		System.out.println("Hello World!");
     }
}

Output

Hello World!

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
How to print different type of values in Java?... >>