Answer to Question #275998 in C++ for Joy Chepkwemoi

Question #275998

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




1
Expert's answer
2021-12-05T18:16:58-0500
#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();
    }
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment