我制作了一个多维数组(identifier [] []),将其分配给变量'x',以标识具有整数1-9的单元格,因此我可以更轻松地使用它们。但是,如何将'x'值分配给cell []数组,这样我可以将其传递到我的主函数中,然后在for循环中将其打印出来(“单元格编号为:”)?并且,如果我需要更改我的printTable函数,那么如何更改它,所以返回值将是一个数组? (我正在尝试制作井字游戏程序)
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
printTable();
System.out.print("Cell numbers are: ");
for(int i = 0; i < 9; i++) {
System.out.print("");
if (i != 8) {
System.out.print(", ");
} else {
System.out.print(".");
}
}
input.close();
} // End of main.
public static void printTable() {
int rows = 3;
int columns = 3;
int[][] identifier = new int[rows][columns];
int x = 1;
int[] cell = new int[9];
for(int i = 0; i < rows; i++) {
for(int j = 0; j < columns; j++) {
identifier[i][j] = x;
if (i == 0 && j == 0) {
System.out.println("+---+---+---+");
}
System.out.print("| " + x + " ");
cell[x];
x++;
if (j == columns - 1) {
System.out.print("|");
}
}
System.out.println("");
System.out.println("+---+---+---+");
}
System.out.println("Enter a number between (1-9): ");
} // End of printTable.
最佳答案
不是很好的方法,但是要解决您的特定问题,您需要
从printTable函数返回结果:public static void printTable()
更改为public static int[] printTable()
在printTable函数的末尾添加return cell;
在主要功能中,将printTable();
更改为int[] cell2 = printTable();
并更改您的“ for循环”:for(int i = 0; i < 9; i++) { System.out.print("");
更改为for(int i = 0; i < 9; i++) { System.out.print(cell2[i]);
关于java - 如何将整数值分配给数组并将其传递给另一个函数?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19370586/