输出后是黑屏,打印不出结果,🙏帮忙看看
#include<stdio.h>#include<windows.h>
int main(void)
{
float x,y,a;
for(y=1.5;y>1.5;y-=0.1)
{
for(x=-1.5;x<1.5;x+=0.5)
{
a=x*x+y*y-1;
putchar(a*a*a-x*x*y*y*y<0.0?'x':' ');
}
system("color 0c");
putchar('\n');
}
}
\\输出后是黑屏,打印不出结果,🙏帮忙看看 x,y,a;没有赋值 jhq999 发表于 2021-11-24 22:42
x,y,a;没有赋值
#include<stdio.h>
#include<windows.h>
int main()
{
float x,y,a;
for(y=1.5f;y>-1.5f;y-=0.1f)
{
for(x=-1.5f;x<1.5f;x+=.05f)
{
a=x*x+y*y-1;
putchar(a*a*a-x*x*y*y*y<0.0f?'x':' ');
}
"sleep(100)";
putchar('\n');
}
getchar();
return 0;
}
\\谢谢你,现在运行起来了
页:
[1]