在C++中如何快速输出一个字母的ASCII码值?

2024-12-31 10:04:39
推荐回答(1个)
回答1:

不用其它变量,也不用函数。。。
char ch;

ch='A';
cout<<(int)ch; //按C++的方式输出
printf("%d",ch); //按C的方式输出