圣诞树代码 下雪c语言
时间: 2023-12-19 18:32:19 浏览: 104
c语言圣诞树代码.txt
以下是一个在控制台输出圣诞树并下雪的C语言代码示例:
```c
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <time.h>
void PrintTree() {
int i, j, k;
int n = 10; // 圣诞树的层数
for (i = 1; i <= n; i++) {
for (j = 1; j <= n - i; j++) {
printf(" ");
}
for (k = 1; k <= 2 * i - 1; k++) {
printf("*");
}
printf("\n");
}
for (i = 1; i <= 2; i++) {
for (j = 1; j <= n - 1; j++) {
printf(" ");
}
printf("***\n");
}
}
void PrintXueHua() {
srand((int)time(0));
while (1) {
HANDLE hd;
COORD pos;
pos.X = rand() % 75;
pos.Y = rand() % 18;
hd = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleCursorPosition(hd, pos);
printf("*");
Sleep(700);
}
}
int main() {
system("color c");
PrintTree();
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 7);
PrintXueHua();
system("pause");
return 0;
}
```
阅读全文