Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
100367 吴梓玄 12输出英文字母 C Accepted 0 MS 188 KB 201 2024-12-07 16:34:46

Tests(1/1):


Code:

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