Run ID:101620
提交时间:2024-12-15 15:32:20
#include <typeinfo> #include <iostream> using namespace std; int main() { for (char k='a'; k<('z'+1); k=k+1) { cout<<k<<' '; } cout<<endl; for (char k='Z'; k>('A'-1); k=k-1) { cout<<k<<' '; } return 0; }