write a program to check whether the character is in lowercase or uppercase in java

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Alphabet_Check {
    public static void main(String args[]) throws IOException{
        char m;
        BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
        System.out.print("Enter any alphabet:");
        m = (char) bf.read();
        if(m >= 97 && m <= 123){
            System.out.println("Lower Case");
        }
        else if(m >= 65 && m <= 96){
            System.out.println("Upper Case");
        }
        else if(m >= 48 && m <= 57){
            System.out.println("Digit");
        }
    }
}

Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
how to know if a chracter is lowercase letter in java how to check char is lowercase or uppercase in java how to check string has uppercase character in java if uppercase or lowercase java variable name should be upper case or lowercase in Java write a program to check whether a character is uppercase or lowercase alphabet in java check if character is uppercase in java uppercaze or lower case string check java strng in java uppercase to lower case check uppercase or lower case string in java java check character is uppercase character write a java program to enter a character and check whether it is uppercase or lower case , digit or special character program to convert lowercase string to uppercase in java char is lowercase or uppercase java checking if a string only contains lowercase letters java checking string for an uppercase letter java how to check if a string has a lowercase java check if char lowercase java how to check lower and upper case in java java code to check whether a string lowerCase UpperCase and Number how to check with if else a character is uppercase or lowercase in java function to check whether the alphabet is upper case or lower case in java uppercase and lowercase java check all check that a character is uppercase java write a program to check whether the character is in lowercase or uppercase in java with a input java program to convert string lowercase to uppercase lowercase to uppercase in string using lowercase and uppercase function in java' java check if string is lowercase check if string is lowercase in java check if string is lowercase java make string behave the same whether uppercase or lowercase java check any letter is uppercase java check string is lowercase in java program to change uppercase to lowercase in java Write a java program to check whether a entered character is lowercase ( a to z ) or uppercase ( A to Z ). check if char is lowercase java check if character is uppercase java how to check the alphabet is upper or lower in java count uppercase and lowercase in java find upper case or lowercase in string java string check all character in lowercase java check if string has both uppercase and lowercase in java Write C program to check whether the character is in lowercase or uppercase in Java how to check if a string is lowercase in java how to check if a char is lowercase in java check lower case letter condition in java java compare char is upper and lowercase to to determin a character is uppercase or lowercase java compare uppercase and lowercase in java check lowercase letters in java java program to count lowercase letters in string java program to count lowercase letters in java program to check a letter is in lowercase and uppercase in java how to compare uppercase and lowercase character in java how to check character is uppercase in java how to detect words a crowd of uppercase and lowercase in java check each letter for lowercase java check for lowercase letters java how to check if a character is lowercase in java how to check if character is lowercase in java check uppercase letter in java check if character is lowercase letter java how to compare uppercase and lowercase in java how to convert lowercase to uppercase in java character how to check if a character is uppercase or lowercase in java check character is uppercase or lowercase java whether a given character is upper-case or lower-case java program to convert a string from lowercase to uppercase in java check if character is lowercase java how to check whether a character is uppercase in java java how to check if a stringis lower or upper how to check if a character is uppercase in java check if a character is lowercase java java how to cangw lowercase to uppercase java character is uppercase how to check if a single string is lowercase letter java check upper and lowercase java how to check is character is uppercase java check if string lowercase java simple program in java to check string is uppercase or lowercase method of java to check uppercase or lowercase how to find character is lowercase or not in java java program to check for lower and uppercase or lowercase java check if char is uppercase letter to lowercase how to check uppercase and lowercase in java java check if letter is lowercase java check if letter is uppercase how to check if a string is uppercase or lowercase in java java program to check whether the entered input is uppercase of not check if characer is uppercase number to check lowercase and uppercase character in java how to check if a character is uppercase or lowercase in c Program to check whether a given character is an uppercase/ lowercase / digit etc A character (ch) Write a function that returns &lsquo;U&rsquo;, if it is uppercase; &lsquo;L&rsquo; if it is lowercase and &lsquo;I&rsquo; otherwise. Print the value returned. Check whether an inputted character is a capital or a small letter. write a program to check whether the character is in lowercase or uppercase in java
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source