[YTU]_1046 ( 输入10个数字,然后逆序输出)
生活随笔
收集整理的這篇文章主要介紹了
[YTU]_1046 ( 输入10个数字,然后逆序输出)
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
Description
輸入10個數(shù)字,然后逆序輸出。
Input
十個整數(shù)
Output
逆序輸出,空格分開
Sample Input
1 2 3 4 5 6 7 8 9 0Sample Output
0 9 8 7 6 5 4 3 2 1#include <iostream> using namespace std; void revert(int*p,int n) { int i; for(i=n-1;i>=1;i--) cout<<p[i]<<' ';cout<<p[i];cout<<endl; } int main() {void revert(int *,int);const int N=10;int a[N],i;for(i=0; i<N; i++)cin>>a[i];revert(a,N);return 0; }總結(jié)
以上是生活随笔為你收集整理的[YTU]_1046 ( 输入10个数字,然后逆序输出)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: [YTU]_2570 指针练习——变量交
- 下一篇: [YTU]_1066 ( 输入n个数和输