oneMelon 发表于 2020-6-8 20:30:45

请问这里是编码的问题么?要怎么解决呢

#include <iostream>
#include <string>
using namespace std;

int main()
{
        string word;
        cout << "enter a word: ";
        getline(cin, word);
        for (int i = word.size(); i >= 0; i--)
                cout << word;
        cout << endl;
        return 0;
}

结果:
===========================================
这里应该是中文编码的问题吧?在程序里面加什么可以识别中文呢

chxchxkkk 发表于 2020-6-8 22:30:56

cout << word中文一个字符占两字节
页: [1]
查看完整版本: 请问这里是编码的问题么?要怎么解决呢