注册 登录
编程论坛 C语言论坛

小弟初来,不知道哪里错了求助各路大神

门中人ysl 发布于 2022-11-23 21:34, 937 次点击
#incIdent<stdio.h>
#incIdent<windows.h>
int main()
{
    float x,y,a;
    for(y=1.5;y>-1.5;y-=0.1)
    {
        for(x=-1.5;x<1.5;x+=0.05)
        {
            a=x*x+y*y-1;
            putchar(a*a*a-x*x*y*y*y<=0.0?'*':' ');
            
          }
         system("color 0c");
         putchar('\n');
         
    }
         
        
    return 0;
}
2 回复
#2
jklqwe1112022-11-23 21:58
#incIdent<stdio.h>
#incIdent<windows.h>
-------------------------
#include <stdio.h>
#include<windows.h>
#3
rjsp2022-11-24 16:56
除此之外,还有编号为 \u00A0 的空格,想不通的事
1