一、♥源码如下:
#include#include #include int main() { for (float y = 1.5; y > -1.5; y -= 0.1) { for (float x = -1.5; x < 1.5; x += 0.04) { float a = x * x + y * y - 1; putchar(a * a * a - x * x * y * y * y <= 0.0 ? 'o' : ' '); } usleep(1000*3); putchar('n'); } }
二、效果图
三、真是有够无聊的我^_^。



