やあみんな、以下に投稿されたこのコードを手に入れました。while ループを追加して、数値入力のみが使用されるようにしましたが、これを使用すると、数値を 2 回入力するか、Enter キーを押してから数値を入力する必要があります。
出力は次のようになります。
Input number : 1
1
次に、結果を出力します。どうすればこの Cheers を修正できますか。
void Dictionary::SearchNumeric()
{
int x;
cout << "Input number : ";
while (!(cin >> x))
{
cout << "Invalid input. Try again: ";
cin.ignore(numeric_limits<streamsize>::max());
}
string searchWord = myWords[x]->word;
cout << "Word searched: " << searchWord << endl;
cout << "Definition: \n" << myWords[x]->definition << endl;
cout << "Type: " << myWords[x]->type << endl;
int wordIndex = 0;
//while (myWords[wordIndex]->word.compare(x) != 0) {
//needs to return scrabble score
wordIndex++;
//break;
//}
}