首先,由于我是西班牙人,请原谅我的英语语法。好吧,我有这个代码:
public class practica {
public static void main(String[] args) {
Scanner consola = new Scanner(System.in);
int numero = consola.nextInt();
if (numero > 0 && numero <= 100) {
int vector[] = new int[numero];
for (int y = 0; y < numero; y++) {
vector[y] = consola.nextInt();
}
}
}
}
在我(通过控制台)读取数字后,我必须只在一行中显示它们。我知道我必须这样做,System.out.print();
但我不知道我应该在括号中输入什么。