| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5643 | 欧阳漌 | 画三角 | C++ | Presentation Error | 0 | 0 MS | 248 KB | 223 | 2020-08-14 16:39:41 |
#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 i=1;i<=m;i++){ for(int j=1;j<=i;j++) cout<<"*"; cout<<endl; } } return 0; }