***Using Java
Using the switch/case construct, write a
program that takes a character from the user and classifies it as a
number (‘1’,’2’, ‘3’, …), a letter from the alphabet (‘A’, ‘a’,
‘B’, ‘b’, …, ‘Z’, ‘z’), an arithmetic operator (‘+’, ‘-‘, ‘/’, ‘*’,
‘%’), a comparison operator (‘<’, ‘>’, ‘=’), punctuation
(‘!’, ‘?’, ‘,’, ‘,’, ‘:’, ‘;’), and all other characters as a
Special Character, and informs the user of the same.
If the user entered the character A,...