| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 77278 | sh25_shenpy | 输出字母 | C++ | Presentation Error | 0 MS | 236 KB | 204 | 2025-12-21 20:46:57 |
#include<bits/stdc++.h> using namespace std; int main(){ for(char i='a';i<='z';i+=2){ cout<<i<<" "; } for(char j='z';j>='a';j-=2){ cout<<j<<" "; } return 0; }