Header Ads

Learn Together, Stay Connected.

ক্যারেক্টারের পিরামিড-C


#include <stdio.h>

int main()
{

int n,i,j,k,l;
scanf("%d",&n);

for(i=1;i<=n;i++)
{
   for(k=1;k<=n-i;k++)
     {
     
       printf(" ");

     }
   for(j=1;j<=i;j++)
     {
       printf("%c",96+j);
     }
   for(l=1;l<=i-1;l++)
     {
       printf("%c",96+j-l-1);
     }

   if(i!=n)
    {
     printf("\n");
    }
}
return 0;

}

No comments

Theme images by Dizzo. Powered by Blogger.