#include<stdio.h>
#include<windows.h>
int main()
{
	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.0f ? '*' : ' ');
		}
		system("color 0c");
		putchar('\n');
	}
	printf("\n\n\n");
	return 0;
}


版权声明:本文为ld15353133609原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://blog.csdn.net/ld15353133609/article/details/127761519