cmp_str that will accept two strings
as parameters. Your method should not make use of the built-in
.compareTo() method. Instead it should use a while loop and the
.charAt() method to manually perform a lexicographic comparison of the
strings. The function should return a positive integer if the first string
is greater than the second, zero if they are equal, and a negative integer
if the first is less than the second.