Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
119850 | 何辰熠 | 数组输出 | C++ | Accepted | 0 MS | 268 KB | 211 | 2025-05-20 18:32:48 |
#include<bits/stdc++.h> using namespace std; int main() { int a[101],p; for(int i=0;i<10;i++) { cin>>p; a[i]=p; } for(int i=0;i<10;i++) { cout<<a[i]<<" "; } cout<<endl; return 0; }