Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
155079 李一凡 12输出英文字母 C++ Accepted 1 MS 256 KB 222 2026-05-31 14:07:08

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int main() { for(char i='a';i<='z';i++) { cout<<i<<" "; } cout<<endl; for(char c='Z';c>='A';c--) { cout<<c<<" "; } return 0; }