Run ID:137067
提交时间:2025-11-16 10:46:15
#include<bits/stdc++.h> using namespace std; int main(){ for(char i='a';i<='z';i++); cout<<i<<' '; for(char Z='Z';Z>='A';Z--); cout<<Z<<' '; return 0; }