array and loop
Submit solution
Points:
100 (partial)
Time limit:
1.0s
Memory limit:
256M
Author:
Problem type
Allowed languages
C, C++, Java, Python
有一個陣列,請將它反向輸出
輸入格式
第一行有一個數字 \( n (1 \le n \le 10) \) 第二行有 \(n\) 個數字 第\(i\)個代表陣列的第\(i\)項 \( ( -100 \le 陣列內數字 \le 100 ) \)
輸出格式
輸出一行,答案間以一個空格隔開
範例輸入1
2
1 5
範例輸出1
5 1
範例輸入2
6
77 82 9 -1 23 -67
範例輸出2
-67 23 -1 9 82 77
Comments