Run ID:119227

提交时间:2025-05-17 10:57:40

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