0

ユーザーからの入力を受け取り、入力が同じ文字で開始および終了するかどうかを判断するスキャナーを使用してプログラムを作成しようとしています。

import java.util.Scanner;
public class L7E6{
    public static void main(String[]args){
        String word;
        Scanner keyboard = new Scanner(System.in);

        System.out.println("Please type a word: ");
        word = keyboard.nextLine();

        if (word.charAt(0).equals(word.length()-1)){
            System.out.println("The word "+word+" begins and ends with the character "+word.charAt(0));
        }
        else{
            System.out.println("The word "+word+" begins with "+word.charAt(0)+" and ends with "+    (word.length()-1)+" these characters are not the same.");
        }
    }
} 

以前に and を使用charAt(0).length()-1て最初と最後の文字を決定しましたが、ここでは機能していないようです。

4

6 に答える 6

0
if(str.charAt(0)==str.charAt(str.length()-1)){
            System.out.println("equal");
        }
于 2013-10-30T14:14:21.040 に答える