Run ID:154824
提交时间:2026-05-31 09:47:06
#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; }