Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C++ language pls Assignment Write a program that calculates the ticket cost of a group coming to BAU ClubFest2021. The program will read three inputs
C++ language pls
Assignment Write a program that calculates the ticket cost of a group coming to BAU ClubFest2021. The program will read three inputs in the following order: type of the group as a char (groupType), institution of the group as an std::string (groupInst), and number of people in the group as an int (groupNbr). The type of the group can be ONLY one of the three following things: 'U': University student H': High-school student 'N': Non-student Institution of the group will be A SINGLE WORD representing the university name, high-school name, or company name (e.g., 'BAU' for BAU student, "YTU' for Yildiz Technical University student, etc..). We do not accept any high-school students to the Clubfest so, if the group Type is 'H' then the program will say "No admittance". If the groupType is 'U' and the groupInst is 'BAU', meaning they are BAU students, the cost is 2 per person in the group. Otherwise, the cost of entrance is 20 + 13 per 2 PEOPLE in the group (rounded up). If the group is composed of non-high school students, the program will print out the ticket cost of the group as an int value. U AGU 3 U BAU 8 H ROB 40 Input Output 46 16 No admittanceStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started