我在使用 cin 时遇到问题。我的代码:
cout << "Enter Main Keyword: ";
cin >> mainKeyword;
cout << "==========" << endl;
cout << "Enter Secondary Keyword: ";
cin >> secondaryKeyword;
当我为 mainKeyword 变量输入“关键字”(不带引号)时,程序会自动将“key”分配给 mainKeyword,将“word”分配给 secondaryKeyword,让程序将两个或多个字符串视为一个输入的代码是什么?
谢谢。