| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 41737 | WZH | 图形显示 | C++ | Accepted | 0 MS | 244 KB | 179 | 2024-02-23 09:50:34 |
#include<iostream> using namespace std; int main() { int n; cin>>n; for(int i=0;i<n;i++){ for(int j=0;j<n-i;j++){ cout<<"* "; } cout<<" "; } return 0; }