题解 | #Zero-Transposition#

Zero-complexity Transposition

https://www.nowcoder.com/practice/c54775799f634c72b447ef31eb36e975

#include <stdio.h>

int main() {
    int n;
    while (scanf("%d", &n) != EOF) {
        long long a[n];
        for (int i = 0; i < n; i++) {
            scanf("%lld", &a[i]);
        }
        for (int i = n - 1; i > 0; i--) {
            printf("%lld ", a[i]);
        }
        printf("%lld\n", a[0]);
    }
    return 0;
}

全部评论

相关推荐

叁六玖:你看,最后不是让你加油,就是鼓励你,还祝福你求职顺利。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
正在热议
更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务