Difference between revisions of "Hello World"

From CompSciWiki
Jump to: navigation, search
(added hello world code.)
Line 7: Line 7:
 
|Solution=The solution...
 
|Solution=The solution...
  
|SolutionCode=<pre>public class HelloWorld
+
|SolutionCode=<pre>import javax.swing.JOptionPane;
 +
 
 +
public class HelloWorld
 
{
 
{
 +
JOptionPane.showMessageDialog(null, "Hello World!");
 
}</pre>
 
}</pre>
  

Revision as of 18:45, 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