Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
123878 田子熙 12输出英文字母 C++ Accepted 0 MS 268 KB 202 2025-07-10 14:31:03

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ for(int a=1;a<=26;a++){ cout<<char(a+96)<<" "; } cout<<endl; for(int A=26;A>=1;A--){ cout<<char(A+64)<<" "; } return 0; }