本文介绍了如何制作客观的c控制台线垂直输出?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的理解是获取输入:



Here's my understanding fetching the input:

int num = 0;
NSLog (@"Input 5 numbers");

scanf("%d", &num);


NSLog (@"\n You inputted: %d !", num);





样本输入:54321输出:54321



但是输出应该是:

5

4

3

2

1



Sample Input: 54321 Output: 54321

But the output should be:
5
4
3
2
1

推荐答案

int num = 0;
NSLog (@"Input 5 numbers");
for( int count = 0; count < 5; count++ ) {
  scanf("%d", &num);
  NSLog (@"\n You inputted: %d !", num);
}


这篇关于如何制作客观的c控制台线垂直输出?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 13:31