mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
11 lines
269 B
C#
11 lines
269 B
C#
public class Evaporator {
|
|
public static int evaporator(double content, double evap_per_day, double threshold) {
|
|
double c = 1, t = threshold / 100, e = 1 - evap_per_day / 100;
|
|
int i = 0;
|
|
while (c >= t) {
|
|
c *= e;
|
|
i++;
|
|
}
|
|
return i;
|
|
}
|
|
}
|