Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
100366 吴梓玄 12输出英文字母 C Presentation Error 0 MS 184 KB 185 2024-12-07 16:34:05

Tests(0/1):


Code:

#include <stdio.h> int main() { for(int i=97;i<=122;++i){ printf("%c",i); printf(" "); } for(int j=90;j>=65;--j){ printf("%c",j); printf(" "); } return 0; }