public class Spreadsheet {
public static final int row = 10;
public static final int column = 7;
static Cell[][] data;
public static void print() {
data = new Cell[column][row];
for(int i = 0; i < row; i++) {
for(int j = 0; j < column; j++) {
System.out.printf("%13s","|");
}
System.out.println();
for(int j = 0; j < column; j++) {
for(int k = 0; k < 12; k++) {
System.out.print("_");
}
System.out.print("+");
}
System.out.println();
}
}
这应该打印出一个10x7的电子表格,但它没有这样做。这里似乎是一个无限循环错误。帮助
答案 0 :(得分:5)
您只需要一次用户输入,然后继续重复使用相同的输入。您可以修复如下:
while(input.hasNext()) {
String userInput = input.nextLine();
if (!userInput.equalsIgnoreCase("exit")) {
commandLoop(userInput);
}
}
您也可以在while
条件中填写条件的赋值和评估,但我发现它的可读性较差。