-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuying_a_car.cpp
65 lines (46 loc) · 2.76 KB
/
buying_a_car.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//Let us begin with an example:
//A man has a rather old car being worth $2000. He saw a secondhand car being worth $8000. He wants to keep his old car until he can buy the secondhand one.
//He thinks he can save $1000 each month but the prices of his old car and of the new one decrease of 1.5 percent per month. Furthermore this percent of loss increases of 0.5 percent at the end of every two months. Our man finds it difficult to make all these calculations.
//Can you help him?
//How many months will it take him to save up enough money to buy the car he wants, and how much money will he have left over?
//Parameters and return of function:
//parameter (positive int or float, guaranteed) start_price_old (Old car price)
//parameter (positive int or float, guaranteed) start_price_new (New car price)
//parameter (positive int or float, guaranteed) saving_per_month
//parameter (positive float or int, guaranteed) percent_loss_by_month
//nbMonths(2000, 8000, 1000, 1.5) should return [6, 766] or (6, 766)
//Detail of the above example:
//end month 1: percent_loss 1.5 available -4910.0
//end month 2: percent_loss 2.0 available -3791.7999...
//end month 3: percent_loss 2.0 available -2675.964
//end month 4: percent_loss 2.5 available -1534.06489...
//end month 5: percent_loss 2.5 available -395.71327...
//end month 6: percent_loss 3.0 available 766.158120825...
//return [6, 766] or (6, 766)
//where 6 is the number of months at the end of which he can buy the new car and 766 is the nearest integer to 766.158... (rounding 766.158 gives 766).
//Note:
//Selling, buying and saving are normally done at end of month. Calculations are processed at the end of each considered month but if, by chance from the start, the value of the old car is bigger than the value of the new one or equal there is no saving to be made, no need to wait so he can at the beginning of the month buy the new car:
//nbMonths(12000, 8000, 1000, 1.5) should return [0, 4000]
//nbMonths(8000, 8000, 1000, 1.5) should return [0, 0]
//We don't take care of a deposit of savings in a bank:-)
#include <iostream>
#include <cmath>
class BuyCar
{
public:
static std::vector<int> nbMonths(int startPriceOld, int startPriceNew, int savingperMonth, double percentLossByMonth) {
double savings = 0.0;
double old_car = startPriceOld;
double new_car = startPriceNew;
double month = 0.0;
double percentage;
while( std::floor(old_car + savings - new_car)<0 ) {
month++;
percentage = percentLossByMonth + std::floor(month*0.5)*0.5;
savings+=savingperMonth;
old_car *= 1.0-percentage * 0.01;
new_car *= 1.0-percentage * 0.01;
}
return std::vector<int>() = { (int)month, (int)std::round(old_car + savings - new_car) };
}
};