Write a program so that the user can keep entering strings to analyze without having to run the program again. See the example below: Enter Strings to analyze. Enter the string Done to end. Enter a String: BanAnA Output: BanAnA has 3 lowercase letters and 3 upper case letters Enter a String: ABcdefGHi123; Output: ABcdefGHi123 has 5 lowercase letters and 4 upper case letters Enter a String: Done Output: Thank you for using my amazing program! HINT: The method: Character.isLowerCase(c) returns true if c is a lower case character and false otherwise. c must be of type char. Similarly, the method: Character.isUpperCase(c) returns true if c is an upper case character and false otherwise. c must be of type char.
Write a
Enter Strings to analyze. Enter the string Done to end.
Enter a String: BanAnA
Output: BanAnA has 3 lowercase letters and 3 upper case letters
Enter a String: ABcdefGHi123;
Output: ABcdefGHi123 has 5 lowercase letters and 4 upper case letters
Enter a String: Done
Output: Thank you for using my amazing program!
HINT: The method: Character.isLowerCase(c) returns true if c is a lower case character and false otherwise. c must be of type char.
Similarly, the method: Character.isUpperCase(c) returns true if c is an upper case character and false otherwise. c must be of type char.
Step by step
Solved in 4 steps with 2 images