#include <stdio.h> #include <math.h> int main() { for( int r=-4; r<=+4; ++r ) printf( "%*.*s\n", 9-abs(r), 9-abs(r)*2, "*********" ); return 0; }