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