我需要填寫我的陣列使用Scanner
和10個名稱的循環,我不知道如何。 這是我有個大氣壓:陣列掃描儀for循環
import java.util.Scanner;
public class qqqqq {
public static void main (String[] args) {
Scanner input = new Scanner(System.in);
String[] my_friend_names = {"Foo", "Bar", "Baz"};
for (int i = 0; i < my_friend_names.length; i++) {
System.out.println(my_friend_names[i]);
}
}
}
您應該從掃描儀獲取輸入並設置陣列位置...... – brso05
指定要添加的多少個朋友for(int i = 0;我<「多少」; i ++)並在for循環中嘗試my_friend_names [i] = input.nextLine(); – pMpC