Difference between revisions of "Hello World"

From CompSciWiki
Jump to: navigation, search
(added hello world code.)
Line 11: Line 11:
 
public class HelloWorld
 
public class HelloWorld
 
{
 
{
JOptionPane.showMessageDialog(null, "Hello World!");
+
public static void main(String[] args)
 +
{
 +
JOptionPane.showMessageDialog(null, "Hello World!");
 +
}
 
}</pre>
 
}</pre>
  

Revision as of 19:10, 6 April 2010

Back to the Program-A-Day homepage

Problem

The problem

 

Getting Started

Wiki lockers01.jpg

Solution

The solution...

Code

Solution Code

Back to the Program-A-Day homepage