用C++语言编写 分别用字符和ASC2码形式输出整数值65和66

如题所述

#include<iostream>
using namespace std;
int main()
{
char c=65,d=66;
cout<<c<<" "<<(int)c<<endl;
cout<<d<<" "<<(int)d<<endl;
return 0;
}
温馨提示:答案为网友推荐,仅供参考
相似回答
大家正在搜