L1-041 尋找250 分數 10

Frodnx發表於2024-08-03
// 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;
}

相關文章