Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
78413 sh25_wanghy 输出字母 C++ 通过 0 MS 232 KB 267 2025-12-26 15:44:56

Tests(1/1):


#include <iostream> using namespace std; int main() { for (char c = 'a'; c <= 'z'; c += 2) { cout << c << " "; } cout << endl; for (char c = 'z'; c >= 'a'; c -= 2) { cout << c << " "; } cout << endl; return 0; }


测评信息: