Run ID Author Problem Lang Verdict Time Memory Code Length Submit Time
73127 jdf25_wangchs 【入门】打印小写字母表 C++ No Test Data 0 MS 0 KB 395 2025-11-06 19:42:41

Tests(0/0):


#include<bits/stdc++.h> using namespace std; int main() { char a = 'a'; char z = 'z'; for(int i = 0;i <= 25; i++) { cout<<char(a+i); if(i == 13) { cout<<endl; } } cout<<endl; for(int j = 0;j <= 25;j++) { cout<<char(z-j); if(j == 13) { cout<<endl; } } return 0; }