Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
5573 詹梓涵 12输出英文字母 C++ Accepted 0 MS 252 KB 277 2024-11-30 10:17:08

Tests(1/1):


Code:

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