Computer Science, asked by aditisingh12468, 10 months ago

Write a java program to enter a value and check and print whether it is a digit, an alphabet or a special charecter​

Answers

Answered by nithinjee07
0

Answer:

Using ASCII value range

Java has built-in wrapper class Character available in java. lang package. Here we are using isAlphabetic() static method available in Character class to determine whether the given character is an alphabet or not and isDigit() static method is used to check if it is a digit or not.

Similar questions