hi folks,

No More fear of pointers........


Break the old rhythm.Explore the new horizons.


Be a crew member to the new ship......


get easy solutions to solve ur programming issues



WELCOME TO THE WORLD OF JAVA
Showing posts with label sample prog. Show all posts
Showing posts with label sample prog. Show all posts

Developing the Java Application

A Java application is a standalone Java program-- a program written in the Java language that runs independently of any browser.


Example:

/**
@ surendranadh reddy
* The HelloWorldApp class implements an application that

* simply displays "Hello World!" to the standard output.

*/

class HelloWorldApp

{

public static void main(String[] args)

{

System.out.println("Hello World!"); //Display the string.


}


}

output:

Search This Blog