Wednesday, September 18, 2019

First hello world java program



//Declaration of class
class welcome
{
//main function
public static void main(String args[])
{
//print function
System.out.println("Hello World");
}
}

Output: Hello World.

No comments:

Post a Comment