Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
100319 糜宗易 12输出英文字母 C++ Accepted 0 MS 264 KB 207 2024-12-07 13:19:36

Tests(1/1):


Code:

# include<bits/stdc++.h> using namespace std; int main(){ char c; for(c = 'a'; c <= 'z'; ++c){ cout<<c<<" ";} char v; cout<<endl; for(v = 'Z'; v >= 'A'; --v){ cout<<v<<" ";} return 0; }