Computer >> 컴퓨터 >  >> 프로그램 작성 >> C 프로그래밍

C에서 크리스마스 트리를 위한 프로그램

<시간/>

여기서 우리는 한 가지 흥미로운 문제를 보게 될 것입니다. 이번 문제에서는 무작위로 크리스마스 트리를 출력하는 방법을 알아보겠습니다. 따라서 트리는 크리스마스 트리 조명처럼 깜박일 것입니다.

크리스마스 트리를 인쇄하기 위해 다양한 크기의 피라미드를 하나씩 인쇄합니다. 장식용 잎의 경우 주어진 문자 목록에서 임의의 문자가 인쇄됩니다. 높이와 임의성을 조정할 수 있습니다.

여기에서 나무를 생성한 후 전체 화면을 지우고 다시 생성하기 때문에 깜박거리는 나무처럼 보입니다.

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
#define REFRESH_RATE 40000
#define RANDOM_NESS 5 // The higer value indicates less random
void clear_screen() {
   system("@cls||clear");
}
void display_random_leaf() {
   char type_of_leaves[5] = { '.', '*', '+', 'o', 'O' }; //these are the leaf types
   int temp = rand() % RANDOM_NESS;
   if (temp == 1)
      printf("%c ", type_of_leaves[rand() % 5]); //if temp is 1, then use other leaves
   else
      printf("%c ", type_of_leaves[1]); //otherwise print *
}
void tree_triangle(int f, int n, int toth) {
   int i, j, k = 2 * toth - 2;
   for (i = 0; i < f - 1; i++)
      k--;
   for (i = f - 1; i < n; i++) { //i will point the number of rows
      for (j = 0; j < k; j++) // Used to put spaces
      printf(" ");
         k = k - 1;
      for (j = 0; j <= i; j++)
         display_random_leaf();
      printf("\n");
   }
}
void display_tree(int h) {
   int start = 1, end = 0, diff = 3;
   while (end < h + 1) {
      end = start + diff;
      tree_triangle(start, end, h);
      diff++;
      start = end - 2;
   }
}
void display_log(int n) { //print the log of the tree
   int i, j, k = 2 * n - 4;
   for (i = 1; i <= 6; i++) {
      for (j = 0; j < k; j++)
         printf(" ");
      for (j = 1; j <= 6; j++)
         printf("#");
      printf("\n");
   }
}
main() {
   srand(time(NULL));
   int ht = 15;
   while (1) {
      clear_screen();
      display_tree(ht);
      display_log(ht);
      usleep(REFRESH_RATE); //use sleep before replacing
   }
}

출력

C에서 크리스마스 트리를 위한 프로그램