2963 - 输出字母
按顺序输出26个小写英文字母。
Input
本题无输入。
Output
连续输出,无换行。
Examples
Input
no input needed
Output
abcdefghijklmnopqrstuvwxyz
Solution C++
#include<iostream> using namespace std; int main() { cout<<"abcdefghijklmnopqrstuvwxyz"<<endl; return 0; }
按顺序输出26个小写英文字母。
本题无输入。
连续输出,无换行。
no input needed
abcdefghijklmnopqrstuvwxyz
#include<iostream> using namespace std; int main() { cout<<"abcdefghijklmnopqrstuvwxyz"<<endl; return 0; }