#include <stdio.h> #include <conio.h> #include <iostream.h> void main() { int x, y, z = 0; for(x = -3; x <= 3; x++) { for(y = -3; y <= 3; y++) { if(z >= abs(y)) { printf("★"); } else { printf("☆"); } } printf("\n"); if(x < 0) { ++z; } else { --z; } } getch(); }