c 语言烟花代码
#include <stdio.h>
#include <stdlib.h>
#include <windows.h> // 仅适用于 Windows 系统
void gotoxy(int x, int y) {
COORD coord;
coord.X = x;
coord.Y = y;
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), coord);
}
int main() {
int x, y, i;
int n = 50; // 烟花爆炸的粒子数量
for (i = 0; i < n; i++) {
x = rand() % 80; // 随机选择 x 坐标
y = rand() % 24; // 随机选择 y 坐标
gotoxy(x, y);
printf("*");
}
Sleep(2000); // 延时 2 秒
// system("cls"); // 清屏
return 0;
}