Run ID:100307

提交时间:2024-12-07 13:11:49

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