#include <stdio.h>
#include <math.h> main() { int a,b,c,d; for(a=-9;a<=9;a++) { for(b=1;b<=19-abs(a);b++) printf(" "); for(c=0;c<2*abs(a)+1;c++) printf("*"); printf("\n"); } getchar(); }
#include <stdio.h>
#include <math.h> main() { int a,b,c,d; for(a=-9;a<=9;a++) { for(b=1;b<=19-abs(a);b++) printf(" "); for(c=0;c<2*abs(a)+2;c++) printf("*"); printf("\n"); } getchar(); }
搜索
复制
标签:include,沙漏,int,C语言,图形,main From: https://www.cnblogs.com/xkdn/p/16755053.html