Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
143043 王一德 04打印三角形 C++ Wrong Answer 0 MS 264 KB 221 2026-01-11 18:03:06

Tests(0/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; }


Run Info:

------Input------
0
------Answer-----
% %% %%% %%%% %%%%%
------Your output-----
%% %%% %%%% %%%%% %%%%%%