#include #include #define N (3)int main(){ int i,j; for(i=-N;i { for(j=-N;j { putchar(abs(j)<=N-abs(i)?'*':' '); } putchar('\n'); } return 0;}