Highpeak - Blog

// MaleorFemaleString and convert the string // to lower case // Extract the flag that indicates male or female // which is the first character MaleorFemaleString. MaleorFemaleStr = tokenizer.nextToken().toLowerCase(); MaleorFemaleFlag = MaleorFemaleStr.charAt(0); // If the flag bit indicating male or female is not // m or f then skip the line, print a message // indicating the the line of ... ................
................