Invitation to Computer Science 8th Edition

Published by Cengage Learning
ISBN 10: 1337561916
ISBN 13: 978-1-33756-191-4

Chapter 3 - Exercises - Page 144: 20b

Answer

See code

Work Step by Step

def print(table): $\quad$ copy=1 $\quad$ while(copy<=n): $\quad$ $\quad$ i=1 $\quad$ $\quad$ while(i<=n): $\quad$ $\quad$ $\quad$ j=1 $\quad$ $\quad$ $\quad$ while(j<=n): $\quad$ $\quad$ $\quad$ $\quad$ print the entry at ith row and jth column $\quad$ $\quad$ $\quad$ print newline This code will print $n^{3}$ entries. In one table $n^{2}$ entries will be printed, so for printing n tables $n^{3}$ entries will be printed.
Update this answer!

You can help us out by revising, improving and updating this answer.

Update this answer

After you claim an answer you’ll have 24 hours to send in a draft. An editor will review the submission and either publish your submission or provide feedback.