编一个程序,从键盘上输入一个字符,转换成十进制数并输出

2024-12-16 20:14:42
推荐回答(2个)
回答1:

#include
void main()
{
char ch;
scanf("%c", &ch);
printf("%d\n", ch);
system("pause");
}

希望对你有帮助。

回答2:

什么语言的