Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
123806 陈华仁星 12输出英文字母 C++ Accepted 0 MS 192 KB 201 2025-07-10 12:12:39

Tests(1/1):


Code:

#include <cstdio> using namespace std; int main() { for(char i='a';i<='z';i++) { printf("%c ",i); } printf("\n"); for(char i='Z';i>='A';i--) { printf("%c ",i); } return 0; }