Computer >> 컴퓨터 >  >> 프로그램 작성 >> C 프로그래밍

C에서 실선 및 속이 빈 마름모 패턴을 인쇄하는 프로그램

<시간/>

프로그램 설명

아래와 같이 솔리드 및 중공 마름모 패턴을 인쇄하십시오.

C에서 실선 및 속이 빈 마름모 패턴을 인쇄하는 프로그램

알고리즘

중공 마름모용 -

Accept the Number of Rows for Hollow Rhombus from the User
Create a Hollow Rhombus containing the same number of Rows specified by the User.
Print the first row containing the number of stars same as the number of rows.
Print the second row containing the first and last star as show in the output and leave the spaces between first and the last star.
Do the same till you reach the last Row.
Print the last row containing the number of stars same as the number of rows.

단색 마름모의 경우 -

Accept the Number of Rows for Solid Rhombus from the User
Create a Solid Rhombus containing the same number of Rows specified by the User.
Print the first row containing the number of stars same as the number of rows.
Do the same till you reach the last Row.

예시

/* Program to print Hollow and Solid Rhombus star pattern */
#include <stdio.h>
int main() {
   int r, c, rows; //Hollow Rhombus
   int r1,c1, rows1; //Solid Rhombus
   clrscr();
   printf("Enter the Number of rows for Hollow Rhombus Pattern: ");
   scanf("%d", &rows);
   printf("\n");
   for(r=1; r<=rows; r++){
      for(c=1; c<=rows-r; c++){
         printf(" ");
      }
      for(c=1; c<=rows; c++){
         if(r==1 || r==rows || c==1 || c==rows)
         printf("*");
         else
         printf(" ");
      }
      printf("\n");
   }
   printf("\n");
   printf("Enter the Number of rows for Solid Rhombus Pattern: ");
   scanf("%d", &rows1);
   printf("\n");
   for (r1=1; r1<=rows1; r1++){
      for (c1=1; c1<=rows1-r1;c1++){
         printf(" ");
      }
      for (c1=1; c1<=rows1; c1++){
         printf("*");
      }
      printf("\n");
   }
   getch();
   return 0;
}

출력

C에서 실선 및 속이 빈 마름모 패턴을 인쇄하는 프로그램