| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 1160 | 徐杨奕 | 打印小写字母表 | C++ | Wrong Answer | 0 | 0 MS | 248 KB | 205 | 2019-10-04 17:31:20 |
#include<iostream> int main(){ char i='a',a='z'; printf("%c",i); while(i<='z'){ i=i+1; printf("%c",i); } printf("%c",a); while(a>='a'){ a=a-1; printf("%c",a); } return 0; }