| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 1225 | 老师 | 打印小写字母表 | C++ | Accepted | 100 | 0 MS | 252 KB | 251 | 2019-10-06 14:38:06 |
#include<iostream> int main(){ char a='a'; int i=1; while(a<='z'){ printf("%c",a); if(i%13==0) printf("\n"); i++; a++; } a--; while(a>='a'){ printf("%c",a); if(i%13==0) printf("\n"); i++; a--; } return 0; }