In c++, using STL containers, iterators, or algorithms use the movies.txt file attached to get the total for the customer to watch their movie. Console Movies program COMMAND MENU command: total cout << "What movie would you like to watch?"; cin>>Bob and the Horses cout << "Do you want to add a drink ? Y/N"; cin>> N; cout << "Do you want to add popcorn?Y/N"; cin>>Y; cout << " Your price will be" << total << "for everything"; The total should be $17.50 for the Popcorn and movie. ----------------------------------------------------------------------------------------- movies.txt file provided: The Adventures of a Babysitter $10 Barney $25 Bob and the Horses $12 Larry the Car Man $15 Dora and the missing map $15 Ceasar and the Lunch Lady $10 Suzie and the Bad Kids $13.95 Popcorn $5.50 Drink $3.75
In c++, using STL containers, iterators, or
Console
Movies program
COMMAND MENU
command: total
cout << "What movie would you like to watch?";
cin>>Bob and the Horses
cout << "Do you want to add a drink ? Y/N";
cin>> N;
cout << "Do you want to add popcorn?Y/N";
cin>>Y;
cout << " Your price will be" << total << "for everything";
The total should be $17.50 for the Popcorn and movie.
-----------------------------------------------------------------------------------------
movies.txt file provided:
The Adventures of a Babysitter $10
Barney $25
Bob and the Horses $12
Larry the Car Man $15
Dora and the missing map $15
Ceasar and the Lunch Lady $10
Suzie and the Bad Kids $13.95
Popcorn $5.50
Drink $3.75
Step by step
Solved in 2 steps with 1 images