reset password
Author Message
dibakar102
Posts: 3
Posted 12:34 Sep 30, 2016 |

can we use loop just to print 3x3 matrix table or we have to use map ?? 

msargent
Posts: 519
Posted 12:37 Sep 30, 2016 |

To print the table, use the function provided. To make a 3x3 array of BorderedCells that's ready to print from a 3x3 array of persons you have to use map. To make the 3x3 array of persons, you can do that manually or however you wish.

Last edited by msargent at 12:37 Sep 30, 2016.
bryan_bravo
Posts: 6
Posted 14:51 Sep 30, 2016 |

When it says 3x3 array, it is referring to a 2 dimensional array right?

Last edited by bryan_bravo at 14:51 Sep 30, 2016.
msargent
Posts: 519
Posted 15:25 Sep 30, 2016 |

That's right: a 3x3 is an array with 3 rows and 3 columns.