Membuat pohon natal dengan c++

#include<stdio.h>
#include<conio.h>
void main()
{
  clrscr();
  int x,y,z;
  for(x=1;x<=5;x++)
  {for(y=5;y>=x;y--)
   {printf(" ");}
    for(z=1;z<=x;z++)
     {printf(" *");}
      printf("\n");}
  getch();
}

No comments:

Post a Comment