判斷一個字符的性質

package day03;ide

/**spa

 *關係運算 orm

 * it

 *io

 */class

public class Demo11 {static

    public static void main(String[] args) {英文

      int age = 15;di

      boolean  isChild = age<16;view

      System.out.println(isChild);//true


//業務功能:判斷一個字符是否爲數字字符

      char c = '6';//54  'A'65 '中'20013

      // 54>=48 && 54<=57

      if(c>='0'&& c<='9'){

        System.out.println(c+"是數字字符!");      

      }else{

        System.out.println(c+"不是數字字符!");

//業務功能:判斷一個字符是不是英文字符

      c = 'A';//'6' '中'

      if((c>='A'&& c<='Z')||(c>='a' && c<='z')){

        System.out.println(c+"是英文字符");

      }else{

        System.out.println(c+"不是英文字符");

      }


      }


//業務功能:判斷一個字符不是數字字符

      char c = '6';//54  'A'65 '中'20013

      // 54>=48 && 54<=57

      if(!(c>='0'&& c<='9')){

        System.out.println(c+"不是數字字符!");      

      }


    }

}

相關文章
相關標籤/搜索