| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 72617 | sh25_zhuwy | 星号直角三角形 | C++ | 无测评数据 | 0 MS | 0 KB | 188 | 2025-11-02 12:45:59 |
#include <bits/stdc++.h> using namespace std; int main() { int n=5; for(int a=1;a<=n;a++) { for(int b=1;b<=a;b++) { cout<<"*"; } cout<<endl; } return 0; }