该函数应该读取的一小部分,并将其放置在阵列中。 如果用户输入“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;
}