Write a main function that will create 5 Vehicle objects using the data below. Assume all the Vehicles are available initially.
Vehicle ID Daily-Rates ($)
FJH 123N 12.0
DKY 222N 25.0
GAF 333N 18.0
BGH 444N 40.0
FRS 555N 30.0
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
class Vehicle {
public:
Vehicle(string id, double dr) : id(id), daily_rate(dr) {}
void Print() {
cout << id << " " << fixed << setprecision(2) << daily_rate << endl;
}
private:
string id;
double daily_rate;
};
int main() {
Vehicle vehicles[] = {{"FJH 123N", 12.00},
{"DKY 222N", 25.0},
{"GAF 333N", 18.0},
{"BGH 444N", 40.0},
{"FRS 555N", 30.0} };
for (auto v : vehicles) {
v.Print();
}
}
Comments
Leave a comment