| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 83812 | sh25_huangse | 正序输出字符 | C++ | Accepted | 0 MS | 252 KB | 132 | 2026-02-02 18:29:02 |
#include<bits/stdc++.h> using namespace std; int main(){ for(char i='a';i<='z';i+=2) cout<<i<<" "; return 0; }