Run ID:154446
提交时间:2026-05-30 14:05:14
#include<bits/stdc++.h> using namespace std; int main() { // 输出小写字母 a-z for(char c = 'a'; c <= 'z'; c++) { cout << c << " "; } cout << endl; // 逆序输出大写字母 Z-A for(char c = 'Z'; c >= 'A'; c--) { cout << c << " "; } return 0; }