| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5534 | 汪天一 | 画三角 | C++ | Presentation Error | 0 | 0 MS | 248 KB | 247 | 2020-08-14 11:39:18 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,m; cin>>n; for(int i=1;i<=n;i++){ cin>>m; for(int j=1;j<=m;j++){ for(int k=1;k<=j;k++){ cout<<"*"; } cout<<endl; } //cout<<endl; } return 0; }