#include <iostream> #include <vector> using namespace std; vector<int> vec; int main(){ int n , tmp; cin >> n; while (n--) { cin >> tmp; vec.push_back(tmp); } vec.push_back(vec[0]); vec.erase(vec.begin()); for(int x : vec){ cout << x << " "; } return 0; }
注册一个 HydroOJ 通用账户,您就可以在我们提供的所有在线评测服务上提交代码、参与讨论。
使用您的 HydroOJ 通用账户