Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
100369 | 吴梓玄 | 12输出英文字母II | C | Accepted | 0 MS | 200 KB | 155 | 2024-12-07 16:36:36 |
#include <stdio.h> int main() { int a,b; scanf("%d%d",&a,&b); for(int i=96+a;i<=96+b;++i){ printf("%c",i); printf(" "); } return 0; }