一、简单的C语言烟花代码,使用了随机数生成器和ASCII字符来模拟烟花效果。
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define WIDTH 80
#define HEIGHT 25
void wait(int ms)
{
clock_t start = clock();
while (clock() - start < ms);
}
void clear_screen()
{
system("cls");
}
void set_cursor(int x, int y)
{
printf("\033[%d;%dH", y, x);
}
void draw_firework(int x, int y)
{
int i, j;
set_cursor(x, y);
printf("*\n");
for (i = 1; i < 5; i++) {
set_cursor(x, y + i);
for (j = 0; j < i; j++) {
printf("*");
}
printf("\n");
}
for (i = 3; i > 0; i--) {
set_cursor(x, y + i);
for (j = 0; j < i; j++) {
printf("*");
}
printf("\n");
}
}
int main()
{
int x, y;
int i, j;
int num_fireworks;
srand(time(NULL));
clear_screen();
num_fireworks = rand() % 10 + 1;
for (i = 0; i < num_fireworks; i++) {
x = rand() % WIDTH;
y = rand() % HEIGHT;
draw_firework(x, y);
wait(1000);
clear_screen();
}
return 0;
}
该代码将在终端中显示烟花效果,每次烟花的爆炸位置都是随机的。您可以根据需要更改烟花的数量和等待时间。
二、更复杂的C语言烟花代码,它使用了更多的ASCII字符和颜色来模拟烟花效果。
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define WIDTH 80
#define HEIGHT 25
void wait(int ms)
{
clock_t start = clock();
while (clock() - start < ms);
}
void clear_screen()
{
system("cls");
}
void set_cursor(int x, int y)
{
printf("\033[%d;%dH", y, x);
}
void draw_firework(int x, int y)
{
int i, j;
set_cursor(x, y);
printf("\033[31m*\033[0m\n"); // Red color for firework
for (i = 1; i < 5; i++) {
set_cursor(x, y + i);
for (j = 0; j < i; j++) {
printf("\033[31m*"); // Red color for firework
}
printf("\033[0m\n"); // Reset color to default
}
for (i = 3; i > 0; i--) {
set_cursor(x, y + i);
for (j = 0; j < i; j++) {
printf("\033[31m*"); // Red color for firework
}
printf("\033[0m\n"); // Reset color to default
}
}
int main()
{
int x, y;
int i, j;
int num_fireworks;
srand(time(NULL));
clear_screen();
num_fireworks = rand() % 10 + 1;
for (i = 0; i < num_fireworks; i++) {
x = rand() % WIDTH;
y = rand() % HEIGHT;
draw_firework(x, y);
wait(1000);
clear_screen();
}
return 0;
}