この関数は、分数を読み取って配列に配置することになっています。ユーザーが「0」を入力すると、関数は終了するはずです。cin.peek() 関数を使用してこれを実行しようとしていますが、実行は常に if ステートメントに入り、ユーザーは終了できません。
これを適切にコーディングするにはどうすればよいですか (私は peek() を使用しないことにオープンです。これが最も簡単な方法だと思いました。)
ありがとう!
void enterFrac(Fraction* fracs[], int& index)
{
int n, d;
char c, slash;
cout << "Enter fractions (end by entering a 0): ";
c = cin.peek();
if ( c != '0')
{
cin >> n >> slash >> d;
Fraction* f = new Fraction();
f->num = n;
f->den = d;
fracs[index] = f;
index++;
}
}
ただし、peek() のこのテストは機能します。
#include <iostream>
using namespace std;
int main () {
char c;
int n;
char str[256];
cout << "Enter a number or a word: ";
c=cin.peek();
if ( (c >= '0') && (c <= '9') )
{
cin >> n;
cout << "You have entered number " << n << endl;
}
else
{
cin >> str;
cout << " You have entered word " << str << endl;
}
return 0;
}