Difference between revisions of "Input Validation"

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

Revision as of 12:27, 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