#27685: CPP


11030067@mail.hpsh.tp.edu.tw (和平110級鄧雨珊)

學校 : 臺北市立和平高級中學
編號 : 163096
來源 : [61.64.210.174]
最後登入時間 :
2022-10-23 16:54:59
c036. 00573 - The Snail -- UVa573 | From: [27.105.52.161] | 發表日期 : 2021-10-23 15:21

#include <iostream>
using namespace std;

int main(){
float h, u, d, f;
int n;
while (cin >> h >> u >> d >> f && h){
n=1;
float now_h=0;
float u_diff=u*f/100;
while (true){
now_h+=u;
if (now_h>h){
cout <<"success on day "<< n <<endl;
break;
}
now_h-=d;
if (now_h<0){
cout <<"failure on day "<< n <<endl;
break;
}
u-=u_diff;
if (u<0){
u=0;
}
n++;
}
}
}
 
ZeroJudge Forum