Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
143044 王一德 04打印三角形 C++ Accepted 0 MS 260 KB 220 2026-01-11 18:03:43

Tests(1/1):


Code:

#include<iostream> using namespace std; int main(){ int n; for(int i=1;i<=5;i++){ for(int j=0;j<i;j++){ cout<<"%"; } cout<<endl; } return 0; }