Run ID:119224
提交时间:2025-05-17 10:55:49
#include<bits/stdc++.h> using namespace std; int main(){ for(char i = 'a';i <= 'z';i++){ cout<<i<<" "<<endl; } for(char i = 'Z';i >= 'A';i--){ cout<<i<<" "<<endl; } return 0; }