| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 133199 | 翁思宸 | 打印直角三角形 | C++ | Accepted | 12 MS | 280 KB | 315 | 2025-10-17 17:43:20 |
//1449 打印直角三角形 #include<iostream> #include<cstdio> #include<cstring> #include<cmath> using namespace std; int main(){ int a=0,n,l=1; cin>>n; for(int i=1;i<=n;i++){ for(int j=1;j<=i;j++){ cout<<'*'; } cout<<endl; } return 0; }