| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5525 | 罗炜翰 | 倒三角形之二 | C++ | Accepted | 100 | 1 MS | 264 KB | 259 | 2025-02-09 17:48:54 |
#include<bits/stdc++.h> using namespace std; int main() { int a,n; cin>>n; for(int i = n;i >= 1;i--) { a = n - i; for(int j = a;j >= 1;j--) { cout<<' '; } for(int k = i;k >= 1;k--) { cout<<'*'; } cout<<endl; } }