| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5528 | 孙浩楠 | 画三角 | C++ | Presentation Error | 0 | 0 MS | 244 KB | 229 | 2020-08-14 11:38:08 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,i,j,k,num=0; cin>>n; for(i=1;i<=n;i++){ cin>>num; for(k=1;k<=num;k++){ for(j=1;j<=k;j++){ cout<<"*"; } cout<<endl; } } return 0; }