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
Leave a Comment