C语言编程跳动的爱心
时间: 2024-01-10 21:03:51 浏览: 110
爱心表白小程序
以下是C语言编程实现跳动的爱心的代码:
```c
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#define PI 3.1415926535
int main()
{
double y,x,a;
for (y = 1.5; y > -1.5; y -= 0.1)
{
for (x = -1.5; x < 1.5; x += 0.05)
{
a = x * x + y * y - 1;
putchar(a * a * a - x * x * y * y * y <= 0.0 ? '*' : ' ');
}
putchar('\n');
}
return 0;
}
```
阅读全文