dev-c++烟花代码
时间: 2023-12-20 09:29:28 浏览: 356
烟花源代码
3星 · 编辑精心推荐
以下是一个使用EGE绘图库在Dev-C++中编写的烟花程序的代码:
```c
#include <graphics.h>
#include <time.h>
#include <stdlib.h>
int main()
{
initgraph(640, 480); // 初始化绘图窗口
srand(time(NULL)); // 设置随机数种子
while (1) // 循环绘制烟花
{
int x = rand() % 640; // 随机生成烟花的x坐标
int y = rand() % 480; // 随机生成烟花的y坐标
int r = rand() % 255; // 随机生成烟花的颜色
int g = rand() % 255;
int b = rand() % 255;
setlinecolor(RGB(r, g, b)); // 设置烟花的颜色
for (int i = 0; i < 100; i++) // 循环绘制烟花的尾巴
{
int dx = rand() % 21 - 10; // 随机生成尾巴的x方向偏移量
int dy = rand() % 21 - 10; // 随机生成尾巴的y方向偏移量
line(x, y, x + dx, y + dy); // 绘制尾巴
delay(10); // 延迟一段时间,形成动画效果
}
setfillcolor(RGB(r, g, b)); // 设置烟花的颜色
fillcircle(x, y, 5); // 绘制烟花的中心点
for (int i = 0; i < 50; i++) // 循环绘制烟花的爆炸效果
{
int dx = rand() % 101 - 50; // 随机生成爆炸效果的x方向偏移量
int dy = rand() % 101 - 50; // 随机生成爆炸效果的y方向偏移量
setfillcolor(RGB(r, g, b)); // 设置爆炸效果的颜色
solidcircle(x + dx, y + dy, 2); // 绘制爆炸效果
delay(10); // 延迟一段时间,形成动画效果
}
}
closegraph(); // 关闭绘图窗口
return 0;
}
```
请注意,此代码需要在Dev-C++中配置EGE绘图库才能正常运行。具体配置方法可以参考引用中提供的链接。
阅读全文