L1-041 寻找250 分数 10
// 1'35"
#include <iostream>
using namespace std;
int main()
{
int n;
int cnt = 1;
while(cin >> n)
{
if(n == 250)
{
cout << cnt;
break;
}
else ++ cnt;
}
return 0;
}
浙公网安备 33010602011771号