Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
5345 | huangyunkai | 【入门】打印小写字母表 | C++ | No Test Data | 0 MS | 0 KB | 202 | 2023-01-16 09:44:51 |
#include<bits/stdc++.h> using namespace std; int main(){ cout<<"abcdefghijklm"<<endl; cout<<"nopqrstuvwxyz"<<endl; cout<<"zyxwvutsrqpon"<<endl; cout<<"mlkjihgfedcba"<<endl; return 0; }