提问人:CJ Acosta 提问时间:12/1/2022 更新时间:12/1/2022 访问量:31
如何只允许 1-9 之间的输入,同时仍然向多维数组添加值?
How can I only allow input ranging from 1-9 while still adding values to the multidimensional array?
问:
Scanner input = new Scanner(System.in);
System.out.println("Enter values:");
for (int i =0; i < 3 ;i++)
for (int j = 0; j < 3; j++) //WANT TO NOT ALLOW VALUES OUTSIDE 1-9
square[i][j] = input.nextInt();
我尝试使用 if else 构造,但它弄乱了数组和 for 循环
答: 暂无答案
评论
while
do-while