シンの使い方に困っています。私のコード:
cout << "Enter Main Keyword: ";
cin >> mainKeyword;
cout << "==========" << endl;
cout << "Enter Secondary Keyword: ";
cin >> secondaryKeyword;
mainKeyword変数に「キーワード」(引用符なし)を入力すると、プログラムは自動的に「key」をmainKeywordに、「word」をsecondaryKeywordに割り当てます.2つ以上の文字列を1つの入力と見なすようにプログラムを取得するコードは何ですか?
ありがとう。