Run ID:119221

提交时间:2025-05-17 10:55:29

#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; }