好吧我取得了進展我想我問的是錯誤的問題,但繼承了我的新輸出;要求用戶在編號列表中一次輸入多個字符串響應。使用nextLine()方法輸入
- 我得到這個(沒有子彈):
- 「請列出2條difrent線兩個外部正文部分\ n」。
- bodyPart1
- bodyPart2
我需要這個:
- 「請在兩行不同的行上列出兩個外部bodyparts。 \ n」個
- 1> bodyPart1
- 2> bodyPart2
繼承人我的代碼
import java.util.Scanner;
public class secret{
public static Scanner console = new Scanner(System.in);
public static void main(String[] args){
System.out.print("Please list two external bodyparts on 2 difrent lines. \n");
String bodyPart1 = console.nextLine();
String bodyPart2 = console.nextLine();
}
}
您在主要方法中獲得字符串爲什麼需要傳回? – brso05 2014-10-16 14:52:08
你確實期望你的方法'giveBack'做什麼?因爲它不會。 – 2014-10-16 14:52:09
@ brso05-因爲任意要求 – 2014-10-16 14:55:27