#include main() { int x, y, i; for(x=-5; x<=5; x++){ y = x * x; for(i=0; i<=y+1; i++) printf(" "); printf("*\n"); } return(0); }