Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
101790 张智博 12输出英文字母 C++ Accepted 0 MS 264 KB 294 2024-12-18 21:00:16

Tests(1/1):


Code:

#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; }