Category : Java | Sub Category : The Genesis of Java | By Prasad Bonam Last updated: 2020-09-27 06:09:57 Viewed : 930
Description : This is
a simple java program in which show a string (" this is a simple
program.")
/ **
*
* Write a java program to
display a simple string.
*/
class example { // This line declare a
class name & the class definition is start from here .
public static void
main(String a[]) { // This line begins the main() method.
System.out.println("
this is a simple program."); // this line print this is a simple program followed by newline.
} //
end of main program