Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
5640 | 李成蹊 | 【入门】打印小写字母表 | C++ | No Test Data | 0 MS | 0 KB | 203 | 2023-01-17 08:45:57 |
#include<bits/stdc++.h> using namespace std; int main() { cout<<"abcdefghijklm"<<endl; cout<<"nopqrstuvwxyz"<<endl; cout<<"zyxwvutsrqpon"<<endl; cout<<"mlkjihgfedcba"<<endl; return 0; }