1. 程式人生 > >PAT天梯賽——L1-041. 尋找250

PAT天梯賽——L1-041. 尋找250

對方不想和你說話,並向你扔了一串數…… 而你必須從這一串數字中找到“250”這個高大上的感人數字。

輸入格式:

輸入在一行中給出不知道多少個絕對值不超過1000的整數,其中保證至少存在一個“250”。

輸出格式:

在一行中輸出第一次出現的“250”是對方扔過來的第幾個數字(計數從1開始)。題目保證輸出的數字在整型範圍內。

輸入樣例:
888 666 123 -233 250 13 250 -222
輸出樣例:
5
分析:字串流直接過,最基礎最基礎的流使用了
#include <bits/stdc++.h>

using namespace std;

string a;

int main()
{
    getline(cin,a);

    stringstream in(a);

    int cnt=0;

    int ss;

    while(in>>ss)
    {
        cnt++;
        if(ss==250)
        {
            cout<<cnt;
            exit(0);
        }
    }

    return 0;
}