C语言编程,任意输入一个ASCII码,输出其对应的字符。输入在一行中给出一个不超过255的正整数。
时间: 2023-05-25 12:07:14 浏览: 168
```c
#include <stdio.h>
int main()
{
int ascii;
scanf("%d", &ascii);
printf("%c\n", ascii);
return 0;
}
```
或者使用`getchar()`逐个读入字符:
```c
#include <stdio.h>
int main()
{
int ascii;
scanf("%d", &ascii);
getchar(); // 读取多余的换行符
printf("%c\n", (char)ascii);
return 0;
}
```
阅读全文