可能这就是代码人的浪漫吧
#include<stdio.h>
#include<Windows.h>
int main(){
float x,y,a;
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?'*':' ');
}
system("color 0c");
Sleep(100);
putchar('\n');
}
getchar();
return 0;
}
浪漫至死不渝