Advertisement
TawratNibir

Untitled

Nov 18th, 2024
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.86 KB | None | 0 0
  1. /*
  2.    *  
  3.   ***
  4.  *****
  5. *******
  6.  *****
  7.   ***
  8.    *
  9. where row = 4
  10. */
  11.  
  12.  
  13. #include<stdio.h>
  14.  
  15. int main() {
  16.     int n, m;
  17.     scanf("%d", &n);
  18.     int row = n;
  19.     int collumn = (2 * n) - 1;
  20.     int low = (collumn + 1)/2;
  21.     int high = low;
  22.     for(int i=1;i<=row;i++) {
  23.         for(int j=1;j<=collumn;j++) {
  24.             if(j>=low&&j<=high) {
  25.                 printf("*");
  26.             }
  27.             else {
  28.                 printf(" ");
  29.             }
  30.         }
  31.         printf("\n");
  32.         low--;
  33.         high++;
  34.     }
  35.     low=2;
  36.     high=collumn-1;
  37.     for(int i=1;i<row;i++) {
  38.         for(int j=1;j<=collumn;j++) {
  39.             if(j>=low&&j<=high) {
  40.                 printf("*");
  41.             }
  42.             else{
  43.                 printf(" ");
  44.             }
  45.         }
  46.         printf("\n");
  47.         low++;
  48.         high--;
  49.     }
  50.  
  51.     return 0;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement