public class Examine { public static void main(String args[]) { // check if word passed in if (args.length != 1) { System.err.println( "Please pass in a word to check"); System.exit(-1); } // get word String word = args[0]; // loop for each character for (int i=0, n=word.length(); i