【发布时间】:2015-02-05 15:42:13
【问题描述】:
我的打印方法没有打印出所有的列。它只打印出一半的列,但打印出所有的行。
如何更改我的打印方法以打印出所有列?
import java.io.*;
import java.util.Scanner;
public class T_GameOfLife {
private char[][] board;
private int columns;
private int rows;
private int generation;
public static void main(String[] args) throws FileNotFoundException {
T_GameOfLife game = new T_GameOfLife();
Scanner keyboard = new Scanner(System.in);
System.out.print("Enter how many generations to compute: ");
int gen = keyboard.nextInt();
System.out.println("Generation 1:");
game.print();
for (int i = 2; i <= gen; i++) {
System.out.println("Generation " + i);
game.computeNextGeneration(gen);
game.printNew();
}
}
public T_GameOfLife() throws FileNotFoundException {
Scanner keyboard = new Scanner(System.in);
System.out.print("Enter file name: ");
String filename = keyboard.nextLine();
File file = new File(filename);
Scanner inputFile = new Scanner(file);
int columns = inputFile.nextInt();
int rows = inputFile.nextInt();
inputFile.nextLine();
board = new char[rows][columns];
for (int i = 0; i < rows; i++) {
String line = inputFile.nextLine();
for (int j = 0; j < columns; j++) {
board[i][j] = line.charAt(j);
}
}
}
public int getColumns() {
return columns;
}
public int getRows() {
return rows;
}
public int getCell(int rows, int columns) {
if (board[rows][columns] == 'X' || board[rows][columns] == '0') {
return board[rows][columns];
} else {
return 0;
}
}
public void setCell(int rows, int columns, int value) {
for (int i = 0; i < board.length; i++) {
for (int j = 0; j < board[0].length; j++) {
value = board[rows][columns];
}
}
}
public void print() {
for (int i = 0; i < board.length; i++) {
for (int j = 0; j < board[i].length; j++) {
System.out.print( board[i][j] );
}
System.out.println();
}
}
}
【问题讨论】:
标签: java