Run ID:154813

提交时间:2026-05-31 09:36:44

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