>백엔드 개발 >C++ >숫자 패턴을 출력하는 프로그램을 C 언어로 작성하세요.

숫자 패턴을 출력하는 프로그램을 C 언어로 작성하세요.

王林
王林앞으로
2023-08-26 12:05:051462검색

프로그램 설명

사용자가 제공한 줄 수를 받아 숫자 패턴을 인쇄합니다.

입력: 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("</p><p> 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("</p><p>");
      count = count + 1 + rows - k;
   }
   getch();
   return 0;
}

Output

숫자 패턴을 출력하는 프로그램을 C 언어로 작성하세요.

숫자 패턴을 출력하는 프로그램을 C 언어로 작성하세요.

위 내용은 숫자 패턴을 출력하는 프로그램을 C 언어로 작성하세요.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 tutorialspoint.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제