Advertisement

Numbers of Diamond

#include<stdio.h>
#include<conio.h>
int main()
{
int i,j,k,a,x;
printf ("Enter the number of the diamond=");
scanf(" %d",&a);

for(x=1;x<=a;x++)
{

 for(i=1;i<=5;i++)

{
  printf("\n");
  for(k=5;k>=i;k--)
   {
    printf(" ");
   }

 for(j=1;j<=2*i-1;j++)
 {
 printf("*");
 }
//printf("\n");



//decrement

}
for(i=4;i>=1;i--)
{ printf("\n");
  for(k=5;k>=i;k--)
    {
      printf(" ");
    }

 for(j=1;j<=2*i-1;j++)
 {
 printf("*");
 }
//printf("\n");
//printf("%d",i);
}
}
getch();
return 0;

}

No comments:

Post a Comment

Please comment bellow. Share your knowledge