OK呀兄弟们,今天也是编了个爱心程序,话不多说上干货.(给个赞bei)
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
int main(int argc, char*argv[])
{
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');
}
printf("\n\n\n");
return 0;
}
以上这段代码就是了,可直接在Devc++上运行,下回再见,拜拜ヾ(•ω•`)o.