| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 120352 | 李昊宇 | 打印直角三角形 | C++ | Wrong Answer | 1 MS | 260 KB | 183 | 2025-05-25 14:27:55 |
#include<bits/stdc++.h> using namespace std; int main(){ int a=0; for(int j=1;j<=5;j++){ a++; for(int i=0;i<a;i++){ cout<<"*"; } cout<<endl; } return 0; }
------Input------
7
------Answer-----
* ** *** **** ***** ****** *******
------Your output-----
* ** *** **** *****