哈喽!学期已经过了大半了,那么我们今天就来用所学的知识编写一个代码,浪漫一下吧!今天我们要编写的是C语言的爱心代码。好了,话不多说,开始我们今天的学习吧~
# 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.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");
printf("愿你被这个世界温柔以待~\n");
return 0;
}
好啦,今天的知识分享就到这里啦~我们下篇文章继续学习,一起进步吧!
标签:1.5,代码,C语言,爱心,今天,易懂,include,亲测 From: https://blog.51cto.com/u_16348748/8551344