| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 155830 | 吴梓滔 | 03ASCLL码转字符 | C++ | Accepted | 2 MS | 200 KB | 255 | 2026-06-14 10:04:44 |
#include <stdio.h> #include <ctype.h> int main() { int ascii_code; scanf("%d", &ascii_code); if (isprint(ascii_code)) { printf("%c\n", (char)ascii_code); } else { printf("n"); } return 0; }