import java.util.Scanner;
class example{
  public static void main(String args[]){
 Scanner in = in.next(.charAt(0));
    char ch='';
    
   if(ch>='A'&& ch<='Z')
   {
     System.out.println("the character is uppercase");
     
   }
  else if(ch>='a' && ch<='z')
   {
     System.out.println("the character is lowercase");
   }
   
     else
     {
       System.out.println("some special character");
     }
  }
}

plz tell me the way to accept a character in the java coding as m confused with this silly program

how to use these commands and wat are there packages ....m not gettin the package for Math class also plz help me with this stuff ..\

char tmp = (char) System.in.read();
char tmp = (char) new InputStreamReader(System.in).read ();
char tmp = (char) System.console().reader().read();

Use a buffered reader. then get the value as string.

InputStreamReader reader = new InputStreamReader (System.in);
        BufferedReader input = new BufferedReader (reader);
        String text;
        char character;
       text = input.readLine();
       character = text.charAt(0);
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.