내가 작성한 코드
// 백준 1712 손익분기점
#include <iostream>
#include <string>
using namespace std;
int main(){
int a, b, c, n=0;
cin >> a >> b >> c;
if((c-b) == 0 || (c-b)< 0) cout << "-1";
else if(a==0 && (c-b)>0) cout << "1";
else if(a!=0 && (c-b)>0) cout<< a/(c-b)+1;
}
더욱 간단하게 구현된 코드
#include <iostream>
using namespace std;
int main(void){
int a, b, c;
int n = 1;
cin>> a >> b >> c;
if(b >= c){
cout << -1;
return 0;
}
cout<< a/(c-b) + 1;
}