| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 1172 | 徐杨奕 | 打印小写字母表 | C++ | Accepted | 100 | 0 MS | 252 KB | 242 | 2019-10-04 19:16:34 |
#include<iostream> int main(){ char i='a',b='z'; while(i<='z'){ printf("%c",i); i=i+1; if(i=='n') printf("\n"); } printf("\n"); while(b>='a'){ printf("%c",b); b=b-1; if(b=='m') printf("\n"); } return 0; }