Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
148951 赵锦鹏 12输出英文字母 C++ Accepted 0 MS 264 KB 201 2026-03-04 19:31:28

Tests(1/1):


Code:

#include <iostream> using namespace std; int main() { for(int i=97;i<=122;i++) { cout<<char(i)<<" "; } cout<<endl; for(int j=90;j>=65;j--) { cout<<char(j)<<" "; } return 0; }