| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 1154 | 倪邢暄 | 打印小写字母表 | C++ | Wrong Answer | 0 | 0 MS | 248 KB | 248 | 2019-10-04 10:27:51 |
#include<iostream> int main(){ int t,i; char n='a',y='z'; while(n<='z'){ printf("%c",n); n++; t++; if(t%13==0) printf("\n"); } while(y>='a'){ printf("%c",y); y--; t++; if(t%13==0) printf("\n"); } return 0; }