Advertisement
Md_hosen_zisad

dimond new

Sep 10th, 2017
416
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.52 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int i,j,k,n;
  5.     scanf("%d",&n);
  6.     for(i=1;i<=n;i++)
  7.     {
  8.         for(j=i;j<n;j++)
  9.         {
  10.             printf(" ");
  11.  
  12.         }
  13.         for(k=1;k<(i*2);k++)
  14.         {
  15.             printf("*");
  16.         }
  17.         printf("\n");
  18.     }for(i=1;i<=n;i++)
  19.     {
  20.         for(j=1;j<=i ;j++)
  21.         {
  22.             printf(" ");
  23.  
  24.         }
  25.  
  26.         for(k=1;k<=((n-i+1)*2)-3;k++)
  27.         {
  28.             printf("*");
  29.         }
  30.         printf("\n");
  31.     }
  32.  
  33.     return 0;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement