题解 | 神秘石像的镜像序列
神秘石像的镜像序列
https://www.nowcoder.com/practice/fa34eea974234610b6d3d81790cb2949
#include <iostream>
using namespace std;
int main() {
int a[100];
int i = 0;
int n ;
while(cin >> n)
{
a[i] = n;
i++;
}
for(i = i -2;i>= 0 ; i--)
{
cout << a[i]<< " ";
}
}
// 64 位输出请用 printf("%lld")
