Write a java program using switch statement to find whether the entered character is in uppercase or lowercase.
Answers
Answered by
0
Answer:
Given a character, the task is to check whether the given character is in upper case, lower case or non-alphabetic character
Examples:
Input: ch = 'A'
Output: A is an UpperCase character
Input: ch = 'a'
Output: a is an LowerCase character
Input: ch = '0'
Output: 0 is not an aplhabetic character
Explanation:
Similar questions