我得到的任务是编写一个程序,该程序使用 for 循环、数组和 printline 语句返回输入以计算给定的数字。它有效,但我认为我没有正确完成数组部分。我的输出也是垂直的而不是水平的。
Scanner Hi = new Scanner(System.in);
System.out.println("Print a number");
int n = Integer.parseInt(Hi.nextLine());
int[] He = new int[n];
for (int index = 0; index <= n; index++) {
System.out.println(index);
}
System.out.println("counted til "+ n);
程序运行并计数,但我认为它没有存储在数组中。