用devc++写一个烟花代码
时间: 2023-12-18 19:29:30 浏览: 208
烟花源代码
3星 · 编辑精心推荐
以下是使用Dev-C++编写的烟花代码:
```c
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define WIDTH 80
#define HEIGHT 24
int main(void) {
int x, y, i;
char screen[HEIGHT][WIDTH];
srand(time(NULL)); // 用当前时间初始化随机数生成器
// 初始化屏幕
for (y = 0; y < HEIGHT; y++)
for (x = 0; x < WIDTH; x++)
screen[y][x] = ' ';
// 随机生成烟花的花瓣
for (i = 0; i < 50; i++) {
x = rand() % WIDTH; // 随机生成横坐标
y = rand() % HEIGHT; // 随机生成纵坐标
screen[y][x] = '*'; // 在屏幕上绘制烟花花瓣
}
// 输出屏幕
for (y = 0; y < HEIGHT; y++) {
for (x = 0; x < WIDTH; x++)
putchar(screen[y][x]);
putchar('\n');
}
return 0;
}
```
阅读全文