Tuesday, 16 January 2018

Program to print "Hello World !!!" on console

Source Code : 

// simple java program for printing hello world

public class simple
{
 public static void main(String args[])
 {
  System.out.print("Hello World !!! \n");
 }
}

Output Screen : 



No comments:

Post a Comment