Question
(1) Menu selection (input from the Keyboard)
(2) Display results
(3) Three functions. One function must contain some calculation
(4) Two Classes. Some of the functions must be defined inside of a class.
(5) Your project must be unique.
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
#include <string>#include <cstdlib>
#include <sstream>
#include <iomanip>
#include <vector>
#include <iostream>
using namespace std;
class Car {
public:
Car(string name = "", string type = "",
int year = 1900, double price = 0.0);
Car(const Car& o);
virtual ~Car();
string getName() const;
string getType() const;
int getYear() const;
double getPrice() const;
string toString() const;
private:
string name;
string type;
int year;
double price;
};
Car::Car(string name, string type, int year, double price) {
this->name = name;
this->type = type;
this->year = year;
this->price = price;
}
Car::Car(const Car& o) {
this->name = o.name;
this->type = o.type;
this->year = o.year;
this->price = o.price;
}...