Difference between revisions of "Input Validation"

From CompSciWiki
Jump to: navigation, search
Line 27: Line 27:
 
         while()
 
         while()
 
         {
 
         {
             message =  
+
             message = JOptionPane.showInputDialog("Please Enter a, b or c:");
 
         }
 
         }
 
     }
 
     }

Revision as of 12:24, 6 April 2010

Back to the Program-A-Day homepage

Problem

Input Validation

 

SideSectionTitle

float
Taken from http://www.flickr.com/photos/daniello/565304023/

An image or By Students section

Solution

The solution...

Code

Solution Code

Back to the Program-A-Day homepage