Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
5571 吴承熹 12输出英文字母 C++ Presentation Error 0 MS 252 KB 205 2024-11-30 10:13:43

Tests(0/1):


Code:

#include<iostream> using namespace std; int main(){ for(char ch='a';ch<='z';ch++){ cout<<ch<<" "; } for(char up='Z';up>='A';up--){ cout<<up<<" "; } return 0; }