close

import java.io.*;
public class test04{
public static void main(String[] args)throws IOException
{
BufferedReader input=new BufferedReader
(new InputStreamReader(System.in));
char c;
System.out.print("請輸入一個字元 : ");
c = (char)input.read();
if(Character.isDigit(c))
System.out.print("你輸入的是數字");
else if(Character.isUpperCase(c))
System.out.print("你輸入的是大寫字母");
else if(Character.isLowerCase(c))
System.out.print("你輸入的是小寫字母");
else
System.out.print("你輸入的是什麼鬼");

}
}

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 Neo Chao 的頭像
    Neo Chao

    My Life Goes By My Style

    Neo Chao 發表在 痞客邦 留言(0) 人氣()