私は初心者のプログラミングコースに参加していて、私のプログラムで文字列の最後の文字を出力できない場合がありますか?あなたが最後の文字を取得しようとすると、代わりにその情報を使用しての、文字列の最後の文字を出力
System.out.print("The length of " + word + " is " + word.length());
しかし:あなたは、単語の長さを取得する方法を知っている、あなたはここでそれをやった
public class String {
private static java.lang.String string;
public static void main(java.lang.String[] args) {
Scanner input = new Scanner(System.in);
System.out.println("Enter a string: "); //user enters a word
java.lang.String word = input.nextLine();
System.out.print("The length of " + word + " is " +
word.length()); //gives the number of characters in the word
java.lang.String length = input.nextLine();
System.out.print("The first character: " + word.charAt(0)); //gives the first letter of word
java.lang.String first = input.next();
System.out.print("The last character: " + word.charAt(4)); //gives the last letter of word
java.lang.String last = input.next();
}
}
もちろん、最後のインデックスではなく、インデックス4でcharを取得しているためです。最後のインデックスを取得するには、string.length - 1 – Winter