#29610: C++紀錄


e3524167 (Kenlogin)

學校 : 不指定學校
編號 : 186743
來源 : [182.233.207.92]
最後登入時間 :
2022-03-17 21:12:56
a215. 明明愛數數 | From: [182.233.207.92] | 發表日期 : 2022-03-14 02:37

#include <iostream>

#include <string>

#include <sstream>

#include <cmath>

using namespace std;

int main()

{

int x,y;

while (cin >> x >> y)

{

int z=0, count=1;

z = x;

while (z <= y)

{

x = x + 1;

z = z + x;

count = count + 1;

}

cout << count << endl;

}

}

 

 
ZeroJudge Forum