Sunday 28 February 2016

How To Print E-Shape Pyramid In C

Q. How to print or wap to a E-Shape Pyramid in C language as?

*****
*
***
*
*****

Ans

/*e-shape pyramid in c*/
#include<stdio.h>
int main()
{

 int num=5,r,c;
 for(r=1; r<=num; r++)
 {
   if(r%2==0)
      printf("*");
   else if(r%3==0)
   {
      for(c=1; c<=r; c++)
          printf("*");
   }
   else
   {
      for(c=1; c<=num; c++)
          printf("*");
   }
   printf("\n");
 }
 getch();
 return 0;

}

No comments:

Post a Comment

Ads Inside Post