本文介绍了我如何...打印结构的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

4 3 2 1 2 3 4

3 2 1 2 3

2 1 2

1



我尝试过:



 #include< stdio.h> ; 

int main()
{
int i,space,rows,col;



for(rows = 4; rows> = 1; rows--)
{

for(col = rows; col> = 1; col--)
{
printf(%d,col);
}

for(col = 2; col< = rows; col ++)
{
printf(%d,col);
}

printf(\ n);
}

返回0;
}
解决方案


4 3 2 1 2 3 4
3 2 1 2 3
2 1 2
1

What I have tried:

#include <stdio.h>

int main()
{
    int i, space, rows,col;



    for(rows=4; rows>=1; rows--)
    {
        
         for(col=rows;col>=1;col--)
       {
           printf(" %d",col);
       }

 for(col=2;col<=rows;col++)
       {
           printf(" %d",col);
       }

        printf("\n");
    }

    return 0;
}
解决方案




这篇关于我如何...打印结构的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 17:38