Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
101789 | 胡海峰老师 | 12输出英文字母 | C++ | Accepted | 0 MS | 264 KB | 294 | 2024-12-18 20:59:46 |
#include <iostream> // input output stream using namespace std; int main(){ int i; for(i=97; i<=97+25; i++) cout<< (char)i << " "; cout<< endl; for(i = 65+25 ; i>= 65 ;i--) cout<< (char)i << " "; return 0; }