私はテキストファイルを読み込もうとしていて、果物を私がタイプしたものと一致させようとしています(たとえば、リンゴと入力すると、テキストファイルでリンゴという単語が検索され、一致して見つかったことが出力されます)が、結果を達成するのに苦労しています欲しかったので、助けが必要です。
以下に示す内容のテキスト ファイル (fruit.txt) があります。
りんご、30
バナナ、20
ナシ、10
これは私のコードです
string fruit;
string amount;
string line = " ";
ifstream readFile("fruit.txt");
fstream fin;
cout << "Enter A fruit: ";
cin >> fruit;
fin >> fruit >> amount;
while (getline(readFile, line,','))
{
if(fruit != line) {
cout <<"the fruit that you type is not found.";
}
else {
cout <<"fruit found! "<< fruit;
}
}
アドバイスしてくださいありがとう。