源文件名为love.c
运行效果图如下
源代码如下:
l
#include <stdio.h>
#include<unistd.h>
#include <math.h>
#include <stdlib.h>
#define U 0.1
#define V 0.063
#define M 1.1
#define N 1.2
int main(viod)
{
printf("\033[2J");
float x,y;
float m,n;
for(y=1.3;y>=-1.3;y-=U)
{
for(x=-1.2;x<=1.4;x+=V)
{
if((((x*x+y*y-1)*(x*x+y*y-1)*(x*x+y*y-1)-x*x*y*y*y)<=0))
printf("\e[31m\e[1m%s\e[0m","*");
else
printf(" ");
fflush(stdout);
usleep(1000*5);
}
printf("\n");
}
return 0;
}