我应该怎么写这个代码?
毕竟ASCII码要任意输,那就没有表达式了诶,我怎么相互对应啊?
2条回答 默认 最新
threenewbee 2023-10-06 22:46关注#include <stdio.h> int main() { int x; scanf("%d", &x); printf("%c", (char)x); return 0; }本回答被题主选为最佳回答 , 对您是否有帮助呢?评论 打赏 举报解决 1无用
#include <stdio.h>
int main()
{
int x;
scanf("%d", &x);
printf("%c", (char)x);
return 0;
}