Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
3408 A班-高思婕 打印小写字母表 C++ 通过 100 1 MS 256 KB 422 2024-12-28 11:38:54

Tests(1/1):


#include <bits/stdc++.h> using namespace std; int main() { int count = 0; for(int i = 97;i <= 122;i++) { count++; cout<<char(i); if(count % 13 == 0) { cout<<endl; } } for(int i = 122;i >= 97;i--) { count++; cout<<char(i); if(count % 13 == 0) { cout<<endl; } } return 0; }


测评信息: