1. 程式人生 > >判斷是否是回文數

判斷是否是回文數

字符 nbsp als pre new input line tostring system

public static void huiwen(){
        System.out.println("請輸入一串字符串");
        Scanner input = new Scanner(System.in);
        String str = input.nextLine();
        StringBuffer sb = new StringBuffer(str);
        if(str.equals(sb.reverse().toString())){
            System.out.println("這串字符串是回文數");
        }
else{ System.out.println("這串字符串不是回文數"); } }

判斷是否是回文數