Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
150384 赵奕杰 12输出英文字母 C++ Accepted 2 MS 260 KB 177 2026-03-27 19:44:52

Tests(1/1):


Code:

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