#include <stdio.h>


int main()

{

  //输入最高值

  int h;

  //行数

  int i;

  //列数

  int j;

  printf("Please input the number of the height:");

  scans("%d",&h);

  for(j = 0;j<h;j++)

   { 

    for(i = 0;i<n-j;i++)

    {

     printf(" ");

    }

  for(i = 0;i<(2*j+1);i++)

    {

     printf("*");

    }

  printf("\n");

  }

  //圣诞树树根

 for(I = 0;i<n-1;i++)

  {

    printf(" ****\n");

  }

   return 0;

}

原文链接:https://blog.csdn.net/yayayiba/article/details/80338862