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

C에서 숫자 패턴을 인쇄하는 프로그램

<시간/>

프로그램 설명

사용자의 행 수를 받아 숫자 패턴을 인쇄합니다.

입력:5행

1
6 2
10 7 3
13 11 8 4
15 14 12 9 5

알고리즘

Print the pattern from the end of each Row
Complete the last column of each Row
Start from the Second Last Column of the second row
Repeat till the number of rows specified by the User.

예시

/*Program to print Numeric Pattern */
#include<stdio.h>
int main()
{
   int k, l, m, count=1;
   int rows;
   clrscr();
   printf("\n Please enter the number of rows for the Numeric Pattern: ");
   scanf("%d",&rows);
   for (k = 1; k <= rows; k++) {
      m = count;
      for (l = 1; l <= k; l++) {
         printf("%d",m);
         m = m - (rows + l - k);
      }
      printf("\n");
      count = count + 1 + rows - k;
   }
   getch();
   return 0;
}

출력

C에서 숫자 패턴을 인쇄하는 프로그램


C에서 숫자 패턴을 인쇄하는 프로그램