我怎样才能用C语言做这个反向数字金字塔
问题是制作这个数字金字塔:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用不同的逻辑打印您的第一个图案,您也许可以轻松地反转它。
如果你想使用相同的逻辑,
尝试通过执行类似的操作来反转循环
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