Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
137235 邹文浠白云六中 数组元素前移 C++ 通过 100 0 MS 264 KB 231 2024-03-09 17:46:56

Tests(5/5):


#include <iostream> using namespace std; int a[110],x; int main() { ios::sync_with_stdio(0); cin >> x; for(int i = 0;i < x;i++) cin >> a[i]; for(int i = 1;i < x;i++) cout << a[i] << '\n'; cout << a[0]; }


测评信息: