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