Run ID:103871
提交时间:2024-12-30 15:36:18
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ char n; for(n='a';n<='z';n++){ cout<<n<<" "; } for(n='Z';n>='A';n--){ cout<<n<<" "; } return 0; }