I use eclipse for creating and executing Java prgramms.
first open eclipse and create a new package using the file menu at the top left hand corner..then you need to give it a name in the dialogue box,then create a new class again using the file menu.
Here you have give a name of the class and here it is HelloWorld as it is the name of the program in the dialog bos and
under the Modifier Box leave it as Public

when u click finish you will be getting the skeleton of the program where you need to type the left out parts from the program written below
class HelloWorld {
public static void main(String[] args)
{
System.out.println("Welcome to thomasthecool.blogspot.com!");
}
}
-------------
After you have typed the program you need to press the green play button on the screen at the top and the output would be displayed at the bottom in the console box.
The output is displayed as
Welcome to thomasthecool.blogspot.com!
Thanks for reading,
Thomas:)
once again Happy New Year 2012
No comments:
Post a Comment