C语言娱乐项目————2、带花纹的爱心图案

版权声明:严禁将博客中涉及到的技术用于恶意破坏,如果造成法律责任,博主概不负责! https://blog.csdn.net/Fly_hps/article/details/84939646

源代码


#include <math.h>
#include <stdio.h>

int main()
{
	float y, x, z,f;
	for (y = 1.5f;y > -1.5f;y -= 0.1f)
	{
		for (x = -1.5f;x < 1.5f;x += 0.05f)
		{
			z = x*x + y*y - 1;
			f = z*z*z - x*x*y*y*y;
			putchar(f <= 0.0f ? ".:-=+*#%@"[(int)(f*-8.0f)] : ' ');
		}
		putchar('\n');
	}

	getchar();
	return 0;
}

效果:

猜你喜欢

转载自blog.csdn.net/Fly_hps/article/details/84939646