![]() ..:: MALAYSIA COMMUNITY OFFICIAL WEBSITE ::..Copyright © 2010 Malaysia Community. All right reserved by MarHazK (Marhazli) |
|
#1
|
|||
|
|||
|
Code:
/*
This is the simple java program
save it as HelloWorld.java
*/
public class HelloWorld
{
String a = "HelloWorld"; //variable declaration & assignment
public void display() //instance method
{
System.out.println(a);
}
public static void main(String args[]) //class method
{
HelloWorld hw = new HelloWorld();
hw.display();
}
}
__________________
Riddler Enigma 11 ![]() ![]() ![]()
Last edited by RiddlerEnigma11; 10-21-2009 at 02:24 PM. |
![]() |
| Thread Tools | |
| Display Modes | |
|
|