zltzlt 发表于 2020-1-12 19:54:35

洛谷题目 P1423

// https://www.luogu.com.cn/problem/P1423

#include <iostream>
using namespace std;

int main()
{
    int b;
    double a = 0.0, x, i = 2.0;
    cin >> x;

    for (b = 0; a < x; b++)
    {
      a += i;
      i = i / 100 * 98;
    }
    cout << b;
    return 0;
}
页: [1]
查看完整版本: 洛谷题目 P1423