弄一个C++跳动爱心的代码
时间: 2023-11-17 21:02:15 浏览: 264
跳动爱心代码.py
以下是一个C++实现跳动爱心的代码:
```C++
#include <iostream>
#include <windows.h>
#include <cmath>
using namespace std;
void gotoxy(int x, int y) {
COORD pos = { x, y };
HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleCursorPosition(hOut, pos);
}
int main() {
double x, y, a;
for (a = 0;; a += 0.1) {
for (x = -1.5; x <= 1.5; x += 0.05) {
y = x * x + sqrt(1 - x * x) * sin(a);
gotoxy(40 + x * 10, 12 - y * 8);
cout << "♥";
}
Sleep(50);
system("cls");
}
return 0;
}
```
阅读全文