#include<iostream>
using namespace std;
enum color { White, Black, Red, Brown, Green };
class Automobile
{
private:
char *model;
color c;
int price;
double mileage;
static...
#include<iostream>
using namespace std;
class CDate
{
private:
int Y, M, D;
public:
CDate()
{
Y = 2018, M = 11, D = 21;
}
CDate(int y, int m, int d)
{
...