I need the following question, please see the output below. Write a program named CharacterChange.java that creates a va
Posted: Thu Jul 14, 2022 2:11 pm
I need the following question, please see the outputbelow.
Write a program named CharacterChange.java that creates avariable with the character data type. Initialize the variable to acharacter that represents the letter grade you hope to achieve inthis course
. • Use if statements and methods, isLowerCase( ) &isUpperCase( ), of the Character class to determine if the value ofthe variable is uppercase or lowercase.
• Use toLowerCase( ) or toUpperCase( ) method of the characterclass to show the value of your variable in uppercase andlowercase.
• The output is the following:
The expected letter grade is A
A is uppercase
A is not lowercase
After toLowerCase(), letter grade is a
After toUpperCase(), letter grade is A
Write a program named CharacterChange.java that creates avariable with the character data type. Initialize the variable to acharacter that represents the letter grade you hope to achieve inthis course
. • Use if statements and methods, isLowerCase( ) &isUpperCase( ), of the Character class to determine if the value ofthe variable is uppercase or lowercase.
• Use toLowerCase( ) or toUpperCase( ) method of the characterclass to show the value of your variable in uppercase andlowercase.
• The output is the following:
The expected letter grade is A
A is uppercase
A is not lowercase
After toLowerCase(), letter grade is a
After toUpperCase(), letter grade is A