Run ID:5572

提交时间:2024-11-30 10:15:02

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