Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
21982 | 诸神黄昏 | 字符三角形 | C++ | Presentation Error | 0 MS | 240 KB | 169 | 2023-07-05 15:57:13 |
#include <iostream> using namespace std; int main(){ for(int i=1; i<=3; i++){ for(int j=1; j<=i*2-1; j++ ){ cout<<"*"; } cout<<endl; } return 0; }