mirror of
https://codeberg.org/andyscott/exercism.git
synced 2024-11-09 21:30:47 -05:00
22 lines
931 B
C++
22 lines
931 B
C++
#include <cmath>
|
|
|
|
// daily_rate calculates the daily rate given an hourly rate
|
|
double daily_rate(double hourly_rate) { return hourly_rate * 8; }
|
|
|
|
// apply_discount calculates the price after a discount
|
|
double apply_discount(double before_discount, double discount) {
|
|
return before_discount * ((100 - discount) / 100);
|
|
}
|
|
|
|
// monthly_rate calculates the monthly rate, given an hourly rate and a discount
|
|
// The returned monthly rate is rounded up to the nearest integer.
|
|
int monthly_rate(double hourly_rate, double discount) {
|
|
return ceil(apply_discount(daily_rate(hourly_rate) * 22, discount));
|
|
}
|
|
|
|
// days_in_budget calculates the number of workdays given a budget, hourly rate,
|
|
// and discount The returned number of days is rounded down (take the floor) to
|
|
// the next integer.
|
|
int days_in_budget(int budget, double hourly_rate, double discount) {
|
|
return floor(budget / apply_discount(daily_rate(hourly_rate), discount));
|
|
}
|