我的代碼有什麼問題?檢索字符串長度時出錯
import java.util.Scanner;
class Pali
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
System.out.println("\nInserisci una stringa: ");
String p = in.next();
int n = p.lenght();
}
}
我在p變量中出現「找不到符號」錯誤。爲什麼?非常感謝(對不起,如果我做錯了,這是我的第一篇文章)。
D'oh,非常感謝。也許是時候收起書來衝上牀了 –