#include
using namespace std;
int main()
{
char a,b;
cin>> a >>b;
cout << a << " "<< b << endl;
cout<< static_cast
return 0;
}
晓得了C++的头文件#include
输入是cin >>;
输出是cout << ;
加空格是 << " "<<;
类型转换用的是static_cast<类型转化>(转换的变量)

#include
using namespace std;
int main()
{
char a,b;
cin>> a >>b;
cout << a << " "<< b << endl;
cout<< static_cast
return 0;
}
晓得了C++的头文件#include
输入是cin >>;
输出是cout << ;
加空格是 << " "<<;
类型转换用的是static_cast<类型转化>(转换的变量)