Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
3401 | A班-何泓霏 | 打印小写字母表 | C++ | 解答错误 | 0 | 0 MS | 264 KB | 198 | 2024-12-28 11:02:16 |
#include<bits/stdc++.h> using namespace std; int main(){ cout<<"abcdefghijklm"<<endl; cout<<"nopqrstuvwsyz"<<endl; cout<<"zyswvutsrqpon"<<endl; cout<<"mlkjihgfedcba"<<endl; return 0; }