| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5537 | 吴乐涵 | 画三角 | C++ | Presentation Error | 0 | 0 MS | 248 KB | 245 | 2020-08-14 11:40:51 |
#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++){ cout<<endl; for(int k=1;k<=j;k++){ cout<<"*"; } } cout<<endl; } return 0; }