Difference between revisions of "Input Validation"

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

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