帮我写一个会跳动的爱心c语言
时间: 2023-09-11 15:03:59 浏览: 87
好的,下面是一个简单的跳动爱心的 C 代码:
```c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <windows.h>
void gotoxy(int x, int y) {
COORD pos = {x, y};
HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleCursorPosition(hOut, pos);
}
int main() {
int i, j;
char heart[] = "♥";
int heartLen = strlen(heart);
int x = 40, y = 10; // 爱心起始位置
while (1) {
// 清空屏幕
system("cls");
// 输出爱心
for (i = 0; i < 6; i++) {
for (j = 0; j <= 17; j++) {
double d1 = sqrt(pow(i - 5, 2) + pow(j - 8, 2));
double d2 = sqrt(pow(i - 5, 2) + pow(j - 10, 2));
if (d1 < 5.0 || d2 < 5.0) {
gotoxy(x + j, y + i);
printf("%s", heart);
}
}
}
// 爱心跳动
if (y == 10) {
y = 11;
} else {
y = 10;
}
Sleep(500); // 延迟 0.5 秒
}
return 0;
}
```
这个程序利用了 Windows 控制台的一些特性,可以在控制台中输出跳动的爱心。需要说明的是,这个程序只在 Windows 系统下编译运行。
阅读全文