Java Hello World Program
if you want to copy. Copy after this line./*
This is a Simple Program only Showing Hello World.
Program developed by Asad Hussain
This file name is "Hello.java".
*/
import java.util.*;
public class Hello{
public static void main(String args[]){
System.out.println("Hello World");
}
}
Output of Given Program is:
Java Program Hello World by Asad Hussain |
Post a Comment