我試圖在一個字符串中輸入名字和姓氏,然後在單獨的行上顯示名字和姓氏。我認爲nextLine();命令將工作,但在不同的行Java:如何將同一個字符串中的兩個單詞輸出到單獨的行上?
String full_name;
System.out.println("Please enter your first and last name?");
full_name = c.nextLine();
System.out.printf("Your name is: "+ full_name);
什麼是 'C' 在c.nextLine()? – 2013-02-25 03:24:01
給我們一個你想要控制檯看起來像什麼的例子,這樣我們可以給你一個確切的答案,而不僅僅是猜測。 – Supericy 2013-02-25 03:24:21
c是掃描儀命令搜索的變量 – TitanC 2013-02-25 03:24:58