| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 315901 | xiang | 星号三角阵(三) T2 | C++ | Wrong Answer | 5 MS | 700 KB | 296 | 2026-04-14 20:26:33 |
#include <bits/stdc++.h> using namespace std; int main() { int n; cin>>n; for(int i=0;i<n;i++){ for(int j=0;j<n-i-1;j++){ cout<<" "; } for(int x=0;x<i+1;x++){ cout<<"*"; } cout<<endl; } return 0; }