달팽이의 움직임을 계산하는 문제
cmath 헤더
ceil() 함수 - 올림
floor() 함수 - 내림
round() 함수 - 반올림
반올림으로는 안되는건감?!?
#include <iostream>
#include <cmath>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int A, B, V;
cin >> A >> B >> V;
int a = V - A;
int b = A - B;
if (A >= V)
cout << "1";
else if ((V - A) % (A - B) == 0)
cout << (a / b) + 1;
else
cout << (a / b) + 2;
return 0;
}