求助,各位大佬,这个代码有什么不对,请指教
#include <stdio.h>#include <math.h>
main()
{
double y;
int x, m;
for(y=10;y>=-10;y--) /*圆的半径为10*/
{
m=2.5*sqrt(100-y*y);
for(x=1;x<=30m;x++)
printf(" ");
printf("*");
for(;x<30+m;x++)
printf(" ");
}
system("pause");
return 0;
}