/*
This is a simple java program
Save this file as simple.java
*/
public class simple
{
//the program begins here
public static void main(String ar[])
{
System.out.println("welcome to java program");
}
}
the output of the above program is
welcome to java program
No comments:
Post a Comment