//File : driverRegister.cpp //Author : Andre Long //Due : October 13, 2004 //Description : Main driver for cashRegister and inventory headers for // Chapter 13 program challenge 8 #include #include #include"cashRegister.h" using namespace std; void menu(); void main() { int x; int itemNumber; int numApples=0; int numOranges=0; int numPeaches=0; int numGrapes=0; int numMelons=0; float totalApples=0; float totalOranges=0; float totalPeaches=0; float totalGrapes=0; float totalMelons=0; float grandTotal=0; char responce; cashRegister order(9); do { menu(); itemNumber=order.beginningInfo(); cout<>responce; if(responce == 'Y' || responce == 'y') { cout<<"\n"; cout<