前两天看到网上有很多人在找爱心代码,小编立刻就坐不了,就用C语言简单的写了一个,希望对大家能有帮助。
#include<stdio.h>
#include<Windows.h>文章来源:https://www.toymoban.com/news/detail-723630.html
int main()
{
for(int i=0;i<2;i++)
{
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;
}
好了,以上就是今天的文章。文章来源地址https://www.toymoban.com/news/detail-723630.html
到了这里,关于C语言简单的爱心代码的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!