最简单的devc++烟花代码
时间: 2023-09-23 08:05:13 浏览: 1251
烟花代码-使用C++开发的烟花代码.zip
以下是一个简单的DevC++烟花代码示例:
```c
#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#include<windows.h>
void gotoxy(int x, int y) {
COORD c;
c.X = x;
c.Y = y;
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), c);
}
void delay(unsigned int ms) {
Sleep(ms);
}
int main() {
int i, j, x, y;
system("cls");
for (i = 0; i < 20; i++) {
x = rand() % 80 + 1;
y = rand() % 25 + 1;
gotoxy(x, y);
printf("*");
delay(200);
for (j = 0; j < 5; j++) {
gotoxy(x, y + j);
printf("|");
delay(100);
}
gotoxy(x, y + j);
printf("V");
delay(100);
gotoxy(x, y);
printf(" ");
}
getch();
return 0;
}
```
这段代码会在DevC++中绘制出简单的烟花效果。注意,该代码使用了Windows中的特定函数,可能在其他平台上无法正常运行。
阅读全文