int i, j; for (i=4; i>=1 ; i--) { for (j=1; j<=i; j++) putchar('*'); for (j=1; j<=4-i; j++) putchar(' '); putchar('\n'); }
Copyright ©