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.

a c program to print A1 A2 A3...A8 paper sizes

Program: 58

Write a c program to print paper sizes from A0 to A8 | Let Us C Solutions

#include<stdio.h>
int main()
{
    int i, w=841, h=1189, t;
     for(i=0;i<9;i++)
     {
         printf("\n A%d: %d x %d", i, w, h);
         t = h;
         h = w;
        w = t/2;
     }
     return (0);
}

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

Lokesh Kumar: Being EASTER SCIENCE's founder, Lokesh Kumar wants to share his knowledge and ideas. His motive is "We assist you to choose the best", He believes in different thinking.

View Comments (3)

Related Post
Leave a Comment

This website uses cookies.