| 33 | } |
| 34 | |
| 35 | constexpr int FastestCar() |
| 36 | { |
| 37 | int max = -1; |
| 38 | int maxId = -1; |
| 39 | for(int i = 0; i < 3; ++i) { |
| 40 | if(auto car = CreateCar(i); car->speed() > max) { |
| 41 | max = car->speed(); |
| 42 | maxId = i; |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | return maxId; |
| 47 | } |
| 48 | |
| 49 | int main() |
| 50 | { |