project1.cpp
#include "stdafx.h"
#include "Bicycle.cpp"
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
bool runP = true;
do {
Bicycle object();
char oType;
cout << "Would you like a (B)icycle, or (A)nimal? E for Exit\n";
cin >> oType;
if (oType == 'B' || oType == 'b') {
int seat, wheels;
string brand;
cout << "How many wheels does the bike have?\n";
cin >> wheels;
object().setWheels(wheels);
cout << "How many seats does the bike have?\n";
cin >> seat;
object().setSeats(seat);
cout …Run Code Online (Sandbox Code Playgroud)