Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
91183 sh25_zhangyy 二维数组打印 C++ 通过 1 MS 252 KB 304 2026-06-12 15:13:58

Tests(1/1):


#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; }


测评信息: