3116 - 打印小写字母表
打印小写字母表
把英文字母表的小写字母按顺序和倒序打印出来。(每行13个)
<br />
Input
Output
Examples
Input
no input needed
Output
abcdefghijklm nopqrstuvwxyz zyxwvutsrqpon mlkjihgfedcba
Solution C++
#include<bits/stdc++.h> using namespace std; int a; int main() { cout<<"abcdefghijklm\nnopqrstuvwxyz\nzyxwvutsrqpon\nmlkjihgfedcba"; return 0; }