0

该程序符合要求,但我无法打印出结果表。该程序应该分析一个由 1 和 0 组成的随机表,并打印出一个按顺序计算数字为 1 的表。表大小由用户创建的输入生成。这可以正常工作,但我无法打印结果表。我正在感谢一种不同类型的随机实用程序可能会起作用。

现在我只是得到一个满是零的表....

import java.util.Scanner;
import java.util.Random;

 public class Project1a {
    static int[][] results;   
    static int[][] sample;   

    static int goodData = 1;

    public static void main(String[] args) {   // main comes first (or last)
       scanInfo();
        analyzeTable();
       printTable(results);

    }


  public static void scanInfo()
     {
       Scanner input = new Scanner(System.in);
       System.out.println("Enter number of rows: ");   
       int rows = input.nextInt();
       System.out.println("Enter number of columns: ");
       int columns = input.nextInt();
       Random randomNumbers = new Random();
       sample = new int[rows= randomNumbers.nextInt(50)][columns = randomNumbers.nextInt(50)]; 
       results = new int[rows][columns];


    }



    static void analyzeTable() {   // no argument.  static var sample is assumed
       int row=0;
       while (row < sample.length) {
          analyzeRow(row);
          row++;
       }
    }
    static void analyzeRow(int row) {   // assume sample is "global"
       int xCol = 0;
       int rCount = 0;
       while (xCol < sample[row].length) {
          rCount = analyzeCell(row,xCol);
          results[row][xCol] = rCount; // instead of print
          xCol++;
       }
    }
    static int analyzeCell(int row, int col) {
       int xCol = col;  
       int runCount = 0; 
       int rowLen = sample[row].length;  
       int hereData = sample[row][xCol]; 
       while (hereData == goodData && xCol < rowLen) {
          runCount++;
          xCol++;
          if (xCol < rowLen) { hereData = sample[row][xCol];}
       }
       return runCount;
    }

   public static void printTable(int[][] aTable ) {
     for (int[] row : aTable) {

       printRow(row);
       System.out.println();
     }
   }
   public static void printRow(int[] aRow) {
     for (int cell  : aRow) {
       System.out.printf("%d ", cell);
     }
   }
 }
4

1 回答 1

1

你的问题是这条线。

sample = new int[rows= randomNumbers.nextInt(1)][columns = randomNumbers.nextInt(2)];

你看,nextInt(1)总是返回 0,所以你设置rows为零,你最终会得到几个没有行的数组。

来自 Javadoc nextInt-

public int nextInt(int n)

返回一个伪随机、均匀分布的 int 值,介于 0(包括)和指定值(不包括)之间,取自该随机数生成器的序列。

于 2013-10-28T23:38:28.687 回答