無法弄清楚如何解決。我對Java非常陌生。錯誤:字符串無法解析爲變量
import java.util.Scanner;
public class Greetings {
public static void main(String[] args) {
System.out.println("Hello there, what is your name? ");
Scanner input = new Scanner(System.in);
String = input.nextLine();
System.out.println("Well then, welcome to Java" + input);
}
}
請在此行聲明變量,String = input.nextLine();因爲你需要存儲一個字符串類型的變量。 String s = input.nextLine(); – Kogile
@Unheilig請避免添加不相關的標籤,謝謝。 – Tom