ZipCodeValidator


Write a Java Application that validates Zip Codes. It should accept a string from the command line. It should test that it's length is 5 and that it can be parsed into a number. Display appropriate messages.

Use the args[] array of the "main" method and the System.out method as demonstrated in class.