Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
100272 杜洛雨泽 12输出英文字母 C++ Accepted 2 MS 268 KB 214 2024-12-07 12:18:11

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ char n; for(int i=97;i<=122;i++){ n=i; cout<<n<<endl; } char m; for(int j=90;j>=65;j--){ m=j; cout<<m<<endl; } return 0; }