Search:

Type: Posts; User: my21

Search: Search took 0.07 seconds.

  1. Replies
    4
    Views
    1,232

    Re: how do I get this output?

    yeah, and no
    Wait, I might have it

    public static void printAdditionTable () {
    for (int rows=0; rows<=11; rows++){
    printRow (rows);
    }
    }
    public static...
  2. Replies
    4
    Views
    1,232

    Re: how do I get this output?

    Currently outputs:


    0 1 2 3 4 5 6 7 8 9 10 11
    1 2 3 4 5 6 7 8 9 10 11
    2 3 4 5 6 7 8 9 10 11
    3 4 5 6 7 8 9 10 11
    4 5 6 7 8 9 10 11
    5 6 7 8 9 10 11
    6 7 8 9 10 11
  3. Replies
    4
    Views
    1,232

    how do I get this output?

    0 1 2 3 4 5 6 7 8 9 10 11
    1 2 3 4 5 6 7 8 9 10 11 12
    2 3 4 5 6 7 8 9 10 11 12
    etc.
    This is what I have so far

    public static void printAdditionTable () {
    for (int rows=0; rows<=11;...
Results 1 to 3 of 3