Sunday, 23 September 2012

Simple Program To Print on the screen

/* Simple Program In Java To print on the screen */
class Simple
{
public static void main(String args[])
{
System.out.println("Java Is Better Than C and C++");
}
}

/* Output *
Java Is Better Than C and C++
*/

0 comments:

Post a Comment