Run ID:100319
提交时间:2024-12-07 13:19:36
# include<bits/stdc++.h> using namespace std; int main(){ char c; for(c = 'a'; c <= 'z'; ++c){ cout<<c<<" ";} char v; cout<<endl; for(v = 'Z'; v >= 'A'; --v){ cout<<v<<" ";} return 0; }