欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

字符心形

程序员文章站 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');
    }
}
相关标签: C