首页 > 文章列表 > 在C语言中编写一个按列打印数字的程序

在C语言中编写一个按列打印数字的程序

c语言 数字 按列打印
489 2023-09-03

程序说明

按列打印自然数,如下所示

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("

");    printf("

");    for(i=1;i<=5;i++){       k = i;       for(j=1;j<=i;j++){          printf("%d ", k);          k += 5-j;       }       printf("

");    }    getch();    return 0; }

输出

在C语言中编写一个按列打印数字的程序