#include<cstdio>
#include<windows.h>
#include<cstring>
#include<iostream>
#include<string>
#include<cmath>
using namespace std;
int main(){
float x,y,a,z;
system("COLOR fc");
while(1){
for(y=1.5f;y>-1.5f;y-=0.1f){
for(x=-1.5f;x<1.5f;x+=.05f){
a=x*x+y*y-1;
putchar(a*a*a-x*x*y*y*y<0.0f?'&':' ');
}
Sleep(50);
putchar('\n');
}
cout<<" I LOVE YOU!";
}
return 0;
}
0.0分
11 人评分