4.由鍵盤輸入一個字元,若此字元是數字(0~9),則印出"此字元是數字",若為大小寫字母(a~z、A~Z)則印出"此字元是英文字母"
1 2 3 4 5 6 7 8 9 10 | Scanner sc=new Scanner(System.in); System.out.print("請輸入一個字元>"); char ch=sc.next().charAt(0); if (ch>='0' && ch<='9'){ System.out.println("此字元是數字"); }else if(ch>='a' && ch<='z' ) { System.out.println("此字元是小寫英文字母"); }else if (ch>='A' && ch<='Z' ){ System.out.println("此字元是大寫英文字母"); } |
沒有留言:
張貼留言