Run ID:5571

提交时间:2024-11-30 10:13:43

#include<iostream> using namespace std; int main(){ for(char ch='a';ch<='z';ch++){ cout<<ch<<" "; } for(char up='Z';up>='A';up--){ cout<<up<<" "; } return 0; }