字符心形
程序员文章站
2022-07-12 22:43:39
...
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main()
{
float y,x,a;
for(y=1.5f;y>-1.5f;y-=0.1f)
{
for(x=-1.5f;x<1.5f;x+=0.05f)
{
a=x*x+y*y-1;
putchar(a*a*a-x*x*y*y*y<=0.0f?'*': ' ');
}
putchar('\n');
}
}
上一篇: 【MATLAB编程实例练习】-(20)动态画出心形图案并保存gif动图
下一篇: 心形字符