User Tools

Site Tools


twod

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
twod [2021/11/22 15:59] – created frchristwod [2024/11/18 15:09] (current) frchris
Line 1: Line 1:
 Complete the code so that the main method produces the following output: Complete the code so that the main method produces the following output:
  
-{{ ::twod_output.pdf |}}+{{ ::twod_output.png |}}
  
-<code java>+<code java TwoD.java>
 /** /**
  * TwoD is a warm-up for dealling with initializing a 2 dimensional array  * TwoD is a warm-up for dealling with initializing a 2 dimensional array
Line 41: Line 41:
  
     /**     /**
-     Row Major counts from the first column then down the rows:+     Column Major counts from the first column then down the rows:
      */      */
     public void columnMajor()     public void columnMajor()
Line 55: Line 55:
         c.columnMajor();         c.columnMajor();
         System.out.println("Row Major counts from the first row then across the columns:\n"+r);         System.out.println("Row Major counts from the first row then across the columns:\n"+r);
-        System.out.println("Row Major counts from the first column then down the rows:\n"+c);+        System.out.println("Column Major counts from the first column then down the rows:\n"+c);
         r = new TwoD(7);         r = new TwoD(7);
         c= new TwoD(7);         c= new TwoD(7);
Line 61: Line 61:
         c.columnMajor();         c.columnMajor();
         System.out.println("Row Major counts from the first row then across the columns:\n"+r);         System.out.println("Row Major counts from the first row then across the columns:\n"+r);
-        System.out.println("Row Major counts from the first column then down the rows:\n"+c);+        System.out.println("Column Major counts from the first column then down the rows:\n"+c);
  
     }     }
twod.1637614796.txt.gz · Last modified: 2021/11/22 15:59 by frchris

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki