Qn: Write the C program logic to print stars as follows using java
        *        
      * * *      
    * * * * *    
  * * * * * * *  
* * * * * * * * *
  * * * * * * *  
    * * * * *   
      * * *    
        *   
-By Admin, Last Update On 28th May,2019 10:08 pm

இதை கீழ்க்கண்டவாறு இரண்டாக பிரித்து. அவற்றின் logic-களை ஒன்றாக இணைத்தால் நமக்கு தேவையான output கிடைத்துவிடும்.

part-1
        *        
      * * *      
    * * * * *    
  * * * * * * *  
* * * * * * * * *

* * * * * * * * *
  * * * * * * *  
    * * * * *   
      * * *    
        *
part-2

இவற்றை ஒன்றாக இணைக்கும்போது part-1ல் உள்ள கடைசி row மற்றும் part-2ல் உள்ள முதல் row இவற்றில் எதாவது ஒன்றை மட்டும் தான் எடுத்துகொள்ளவேண்டும்.

part-1 logic
for(int row=1;row<=n;row++){
     for(int s=1;s<=(n-row);s++){
         Logic to print space here..
    }
    for(int col=1;col<=(row*2)-1;col++){
        Logic to print stars here..
    }
    printf("\n");
}
//part-2 logic
for(int row=n-1;row>=1;row--){
     for(int s=1;s<=(n-row);s++){
         Logic to print space here..
    }
    for(int col=1;col<=(row*2)-1;col++){
        Logic to print stars here..
    }
    printf("\n");
}

Complete Program

#include<stdio.h>
#include<conio.h>
int main(){
  int n,row,col,s;
  printf("Enter how many rows you want: ");
  scanf("%d",&n);
  //part-1
  for(row=1;row<=n;row++){
      for(s=1;s<=(n-row);s++){
        printf(" ");
      }
      for(col=1;col<=(row*2)-1;col++){
          printf("*");
      }
      printf("\n");
  }
  //part-2
  for(row=n-1;row>=1;row--){
      for(s=1;s<=(n-row);s++){
        printf(" ");
      }
      for(col=1;col<=(row*2)-1;col++){
          printf("*");
      }
      printf("\n");
  }
return 0;
}
Output:
Enter how many rows you want: 5
        *        
      * * *      
    * * * * *    
  * * * * * * *  
* * * * * * * * *
  * * * * * * *  
    * * * * *   
      * * *    
        *  

Pgcomments

Comments