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

C에서 숫자 열을 현명하게 인쇄하는 프로그램

<시간/>

프로그램 설명

아래와 같이 자연수 열을 현명하게 인쇄하십시오.

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

알고리즘

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

예시

/* Program to print the Natural Numbers in Columns wise */
#include<stdio.h>
int main(){
   int i,j,k;
   printf("Printing the Numbers in Columns wise: ");
   printf("\n");
   printf("\n");
   for(i=1;i<=5;i++){
      k = i;
      for(j=1;j<=i;j++){
         printf("%d ", k);
         k += 5-j;
      }
      printf("\n");
   }
   getch();
   return 0;
}

출력

C에서 숫자 열을 현명하게 인쇄하는 프로그램