| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 130299 | 何旻慧 | 12输出英文字母 | C++ | Accepted | 3 MS | 260 KB | 388 | 2025-09-10 19:49:41 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ char i; for(i=97;i<=122;i++){ cout<<i<<endl; } for(i=90;i>=65;i--){ cout<<i<<endl; } return 0; }