Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. 3.6 multable.cpp
  2.  
  3. Write program to display a multiplication table. The size of
  4. the table is controlled using one value SIZE. Tip: to make the
  5. output evenly spaced, utilize function printf(). You can
  6. assume that the the SIZE is in range 1..9[1]
  7.  
  8. int size = 9;
  9.  
  10. Output:
  11.  
  12. * | 1 2 3 4 5 6 7 8 9
  13. -------------------------------
  14. 1 | 1 2 3 4 5 6 7 8 9
  15. 2 | 2 4 6 8 10 12 14 16 18
  16. 3 | 3 6 9 12 15 18 21 24 27
  17. 4 | 4 8 12 16 20 24 28 32 36
  18. 5 | 5 10 15 20 25 30 35 40 45
  19. 6 | 6 12 18 24 30 36 42 48 54
  20. 7 | 7 14 21 28 35 42 49 56 63
  21. 8 | 8 16 24 32 40 48 56 64 72
  22. 9 | 9 18 27 36 45 54 63 72 81
  23.  
  24. [1] If the SIZE would exceed 9, the requirements to display
  25. evenly spaces values would change dynamically from row to row
  26. and this is not easy to solve. E.g.
  27.  
  28. 10 x 15 => value 150 would require 3 digit display area
  29. 99 x 55 => values 5445 would require 4 digit display area
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement