Write a program that allows the user to enter a character and displays some information about the character based on the following rules:
- Determine whether the character is a letter, digit, or non-alphanumeric.
- If the character is a letter, determine whether it is uppercase or lowercase.
Input Validation:
None required.
Sample Output 1:
Enter a character: j
Lowercase letter
Sample Output 2:
Enter a character: #
Non-alphanumeric
Sample Output 3:
Enter a character: o
Uppercase letter
Sample Output 4:
Enter a character: 6
Digit