我怎样才能用C语言做这个反向数字金字塔

发布于 2025-01-10 22:29:52 字数 803 浏览 0 评论 0原文

问题是制作这个数字金字塔:

123454321
 1234321
  12321
   121
    1

我是编码新手,所以你能告诉我如何处理以及如何逻辑思考此类问题。

这是我的代码:

    main (){
    int input;
    printf("Enter number of row: ");
    scanf("%d",&input);
    while (input <= 0) {
        printf("Not valid.enter number of row: ");
        scanf("%d", &input);
    }
    int i,j,k, space;
    int temp, temp1;
    for(i=1; i<=input; i++){
        for(space=0; space<=input-i; space++){
            printf(" ");
        }
        for(j=1; j<=i; j++){
            printf("%d", j);
        }
        for(k=j; k>=1; --k) {
            printf("%d", k);
        }
        printf("\n");
    }
    return 0;
}

这是上面代码的结果:

    121
   12321
  1234321
 123454321

the question is to make this number pyramid :

123454321
 1234321
  12321
   121
    1

I'm new to coding so can you tell me how to approach and how to think logically in this type of question.

this is my code:

    main (){
    int input;
    printf("Enter number of row: ");
    scanf("%d",&input);
    while (input <= 0) {
        printf("Not valid.enter number of row: ");
        scanf("%d", &input);
    }
    int i,j,k, space;
    int temp, temp1;
    for(i=1; i<=input; i++){
        for(space=0; space<=input-i; space++){
            printf(" ");
        }
        for(j=1; j<=i; j++){
            printf("%d", j);
        }
        for(k=j; k>=1; --k) {
            printf("%d", k);
        }
        printf("\n");
    }
    return 0;
}

this is my result of the code above:

    121
   12321
  1234321
 123454321

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我不咬妳我踢妳 2025-01-17 22:29:52

您可以尝试使用不同的逻辑打印您的第一个图案,您也许可以轻松地反转它。

如果你想使用相同的逻辑,
尝试通过执行类似的操作来反转循环

Original loop;
for(i=1; i<=input; i++)

After reversing loop:- 
for(i=input; i>=1; i--)

you can try printing your first pattern using different logic, you might be able to reverse it easily.

if you want to use the same logic then,
try reversing your loops by doing something like

Original loop;
for(i=1; i<=input; i++)

After reversing loop:- 
for(i=input; i>=1; i--)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文