在此代码中,getline不适用于i = 1.但是对于i = 0,它工作正常。 我应该怎么做才能重复使用getline函数。这个代码接受一个数字并检查它的可分性。“numb”用于存储数字。对于i = 0,所有的计算都很好但是当它转到第二个转弯时,不知道会发生什么,但cin.getline不起作用。
#include <iostream>
#include <cstring>
#include <iomanip>
#include <cstdio>
#include <cstdlib>
#define MAX 1050
using namespace std ;
int call_div (char *num ,long div)
{
int len =strlen (num) ;
int now ;
long extra ;
for (now = 0,extra=0; now < len; now += 1)
{
extra = extra *10 + (num [now] -'0') ;
extra = extra %div ;
}
return extra ;
}
int main (int argc, char const* argv[])
{
int testcase,numbers ,flag =0;
char numb[MAX] ;
cin >> testcase ;
getchar() ;
for (int i = 0; i < testcase; i += 1)
{
cout << i << endl ;
int div[14] ;
cin.getline(numb) ; // i= 0 ,it works fine ,i=1 ,it doesn't work
cin >> numbers ;
for (int j = 0; j < numbers; j += 1)
{
cin >> div[j] ;
}
for (int k = 0; k < numbers; k += 1)
{
// cout << div[k]<< ' ' << call_div (numb,div[k]) << endl ;
if (call_div (numb,div[k])==0)
{
flag = 1 ;
}
else {
flag = 0 ;
break;
}
}
if (flag==0 )
{
cout << "simple"<< endl ;
}
else
cout << "wonderful" << endl ;
}
return 0;
}
答案 0 :(得分:1)
我认为您的输入可能看起来像
something
3 1 2 3
some other thing
4 1 2 3 4
您第一次使用getline()
阅读“内容”。然后你的算法将3读作numbers
,然后是三个数字,然后是那个。在这里阅读停止。下次拨打getline()
时,它会继续阅读,直到达到第一个'\n'
字符。所以当你想要它时,它不会读取“其他东西”。
现在我无法尝试,但我认为在填充getline()
数组的循环之后,使用额外的“哑”div
可以正常工作。