| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 1394 | 孙灏洋 | 倒三角形 | C++ | Wrong Answer | 0 | 0 MS | 252 KB | 248 | 2019-10-07 20:26:04 |
#include<iostream> int main(){ int a,i=1; scanf("%d",&a); while(i<=a){ int m=1; while(m<=a-i){ printf(" "); m++; } int n=1; while(n<=2*i-1){ printf("*"); n++; } printf("\n"); i++; } return 0; }