14 Reputation Points
Ranked #2K
- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
100% Quality Score
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
0 Endorsements
Ranked #72.8K
~1K People Reached
Favorite Forums
1 Posted Topic
#include <iostream> using namespace std; const double TICKET = 124; const double DISCOUNT = 10; int main() int visitors; int age; double total = 0; double price; cout << "Please enter the number of visitors: " << endl; cin >> visitors; for (int i = 1; i <= visitors; i++) …
The End.