Run ID:110079

提交时间:2025-02-14 13:56:51

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