C语言画爱心

C语言画爱心

很无聊做的。。。

1
2
3
4
5
6
7
8
9
10
11
12
13
#include<stdio.h>
#include<windows.h>
int main(){
for (float y = 1.5f; y > -1.5f; y -= 0.1f) {
for (float x = -1.5f; x < 1.5f; x += 0.05f) {
float a = x * x + y * y - 1;
putchar(a * a * a - x * x * y * y * y <= 0.0f ? '*' : ' ');
Sleep(10);
}
putchar('\n');
}
return 0;
}