官方题解|ASCII 码
2024-07-15 08:48:37
发布于:广东
49阅读
0回复
0点赞
题目解析
对于任意给定的 值,我们可以使用强制类型转换,获取其字符形式。
AC代码
C++
AC代码:
#include <bits/stdc++.h>
int main() {
int n;
std::cin >> n;
std::cout << char(n) << '\n';
return 0;
}
Python
AC代码:
print(chr(int(input())))
这里空空如也
有帮助,赞一个