我試圖得到一堆數字作爲輸入,並輸出它作爲第一個未排序的數組,然後排序。如何將輸入值存儲在for循環內的數組中?現在,它只存儲最後輸入的值。如何將值存儲在for循環中的數組中?
String strNumberOfValues, strValue;
int intNumberOfValues, intValue;
Scanner input = new Scanner(System. in);
System.out.println("Please enter the number of values you would like to enter");
strNumberOfValues = input.nextLine();
intNumberOfValues = Integer.parseInt(strNumberOfValues);
for (int i = 0; i < intNumberOfValues; i++) {
System.out.println("Please enter value for index value of " + i);
strValue = input.nextLine();
intValue = Integer.parseInt(strValue);
for (int j = 0; j == 0; j++) {
int[] intArray = {
intValue
};
System.out.println("Here is the unsorted list: \n" + Arrays.toString(intArray));
究竟爲什麼你重新職位,給予近三分鐘前一個答案? – Turing85
:-)我在5分鐘之前開始回答這個問題。但格式化需要更多時間。 – ganeshvjy