| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 81657 | sh25_shenpy | 二维数组打印 | C++ | 通过 | 1 MS | 240 KB | 304 | 2026-01-09 14:47:34 |
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; for(int i=1;i<=10;++i){ for(int j=i;j<=10;++j){ cout<<j<<" "; } for(int j=9;j>=11-i;--j){ cout<<j<<" "; } cout<<endl; } return 0; }