Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
111967 | 袁星皓 | 12输出英文字母 | C++ | Accepted | 0 MS | 260 KB | 205 | 2025-03-08 11:36:14 |
#include<bits/stdc++.h> using namespace std; int main() { for(int i=97;i<=122;i++){ cout<<char(i)<<" "; } cout<<endl; for(int j=90;j>=65;j--){ cout<<char(j)<<" "; } return 0; }