Difference between revisions of "Input Validation"

From CompSciWiki
Jump to: navigation, search
Line 19: Line 19:
 
public class InputValidation
 
public class InputValidation
 
{
 
{
public static void main(String [ ] args)
+
    public static void main(String [ ] args)
 
     {
 
     {
 +
        String message;
 
     }
 
     }
 
}
 
}

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