reset password
Author Message
NaviUy
Posts: 5
Posted 11:38 Jun 05, 2016 |

Can I use public static void to display my answer instead of displaying it in my main method?

NaviUy
Posts: 5
Posted 12:15 Jun 05, 2016 |

also what does it mean by you can only get full credit if you are n x n , m x n , and n x m ?

j05h14
Posts: 3
Posted 13:14 Jun 05, 2016 |

n x n means the array has the same number of rows as columns, so like a square

n x m and m x n means the array has more rows than columns or the the other way around

i.e. n = 2 m = 3

n x n    n x m    m x n

x x       x x        x x x

x x       x x        x x x

           x x

or something like that