> 백엔드 개발 > C++ > C에서 숫자 패턴을 인쇄하는 프로그램을 작성하세요.

C에서 숫자 패턴을 인쇄하는 프로그램을 작성하세요.

PHPz
풀어 주다: 2023-09-05 20:13:07
앞으로
1187명이 탐색했습니다.

프로그램 설명

숫자 패턴은 패턴 규칙이라는 규칙에 따라 생성된 일련의 숫자입니다. 패턴 규칙은 하나 이상의 수학 연산을 사용하여 시퀀스의 연속 숫자 간의 관계를 설명할 수 있습니다.

패턴 예

패턴 1

1
2 6
3 7 10
4 8 11 13
5 9 12 14 15
로그인 후 복사

패턴 2

        1
      1 2 3
    1 2 3 4 5
  1 2 3 4 5 6 7
1 2 3 4 5 6 7 8 9
  1 2 3 4 5 6 7
    1 2 3 4 5
      1 2 3
        1
로그인 후 복사

Algorithm

<strong>Pattern 1:</strong>
i stands for rows and j stands for columns.
5 stands for making pattern for 5 Rows and Columns
Loop for each Row (i)
K is initialized to i
Loop for each Column (j)
Do the Pattern for the current Column (j)
Display the Value of K
Reinitialize the Value of K = k + 5 - j
<strong>Pattern 2:</strong>
First Row: Display 1
Second Row: Display 1,2,3
Third Row: Display 1,2,3,4,5
Fourth Row: Display 1,2,3,4,5,6,7
Fifth Row: Display 1,2,3,4,5,6,7,8,9
Display the same contents from 4th Row till First Row below the fifth Row.
로그인 후 복사

/* Program to print Numeric Pattern */
#include<stdio.h>
int main(){
   int i,j,k;
   printf("Numeric Pattern 1");
   printf("</p><p>");
   printf("</p><p>");
   for(i=1;i<=5;i++){
      k = i;
      for(j=1;j<=i;j++){
         printf("%d ", k);
         k += 5-j;
      }
      printf("</p><p>");
   }
   printf("</p><p>");
   printf("Numeric Pattern 2");
   printf("</p><p>");
   printf("</p><p>");
   for(i = 1;i<=5;i++){
      for(j = i;j<5;j++){
         printf(" ");
      }
      for(k = 1;k<(i*2);k++){
         printf("%d",k);
      }
      printf("</p><p>");
   }
   for(i = 4;i>=1;i--){
      for(j = 5;j>i;j--){
         printf(" ");
      }
      for(k = 1;k<(i*2);k++){
         printf("%d",k);
      }
      printf("</p><p>");
   }
   getch();
   return 0;
}
로그인 후 복사

Output

C에서 숫자 패턴을 인쇄하는 프로그램을 작성하세요.

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

원천:tutorialspoint.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿