Q8 Paper of size A0 has dimensions 1189 mm x 841 mm. Each subsequent size A(n) is defined as A(n-1) cut in half parallel to its shorter sides. Write a program to calculate and print paper sizes A0, A1, A2, ….. A8.
Program: 58
Write a c program to print paper sizes from A0 to A8 | Let Us C Solutions
Output:
A0: 841 x 1189 A1: 594 x 841 A2: 420 x 594 A3: 297 x 420 A4: 210 x 297 A5: 148 x 210 A6: 105 x 148 A7: 74 x 105 A8: 52 x 74
I don’t think this works for the first case
for A0
Yes sir it is working for A0 also
The book doesn’t even cover loops/statements or whatever the “for” is at this point on Chapter 1. How are we supposed to know that?