0

在此代码中,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;
} 
4

1 回答 1

1

我认为您的输入可能看起来像

something
3 1 2 3
some other thing
4 1 2 3 4

第一次你用getline(). 然后您的算法将 3 读取为numbers,然后是三个数字,然后是那个数字。在这里阅读停止。下次您调用getline()时,它将继续读取,直到到达第一个'\n'字符。因此,当您需要它时,它不会读取“其他东西”。

现在我不能尝试它,但我认为它可以在填充数组getline()的循环之后使用额外的“哑”来正常工作。div

于 2013-05-20T21:56:36.340 回答