Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
82133 sh25_shenpy 画三角形 C++ 通过 0 MS 244 KB 289 2026-01-10 17:26:55

Tests(2/2):


#include<bits/stdc++.h> using namespace std; char s='A'; int main(){ int n; cin>>n; for(int i=1;i<=n;++i){ for(int j=1;j<=i;++j){ cout<<(char)s; ++s; if(s>'Z') s='A'; } cout<<endl; } return 0; }


测评信息: