Computer Science, asked by Anonymous, 5 months ago

Write a program to input a character and check whether it is in uppercase or lowercase.

Note: This is a Java Program​

Answers

Answered by Anonymous
6

Answer:

Approach: The key to solve this problem lies in the ASCII value of a character. It is the most simple way to find out about a character. This problem is solved with the help of following detail:

Approach: The key to solve this problem lies in the ASCII value of a character. It is the most simple way to find out about a character. This problem is solved with the help of following detail:Capital letter Alphabets (A-Z) lie in the range 65-91 of the ASCII value

Approach: The key to solve this problem lies in the ASCII value of a character. It is the most simple way to find out about a character. This problem is solved with the help of following detail:Capital letter Alphabets (A-Z) lie in the range 65-91 of the ASCII valueSmall letter Alphabets (a-z) lie in the range 97-122 of the ASCII value

Approach: The key to solve this problem lies in the ASCII value of a character. It is the most simple way to find out about a character. This problem is solved with the help of following detail:Capital letter Alphabets (A-Z) lie in the range 65-91 of the ASCII valueSmall letter Alphabets (a-z) lie in the range 97-122 of the ASCII valueAny other ASCII value is a non-alphabetic character.

Similar questions