![]() |
#2
qunxingw2013-03-14 21:04
|

#include <iostream>
using namespace std;
int main()
{
wchar_t sex;
cin>>sex;
cout<<sex;
return 0;
}
using namespace std;
int main()
{
wchar_t sex;
cin>>sex;
cout<<sex;
return 0;
}
我看书上说wchar_t类型可以储存汉字,想用它来存储性别。我这样写为什么错了?