Create a program that will be used as a POS (Point of Sale) system in a restaurant. The bill_total is given as well as the number_of_guests. The 5 guests will be splitting the bill evenly and so the individual_bill will be bill_total / number_of_guests. The POS will be used in three different locations, each with different guidelines for printing bills. At location 1, individual_bill_1 always rounds down to the nearest dollar. At location 2, individual_bill_2 always rounds up to the nearest dollar. At location 3, individual_bill_3 always rounds up to the nearest cent. Determine what the individual_bill will be at each of the locations. Step 1: Begin by declaring and initializing individual_bill. Step 2: Declare and initialize individual_bill_1 by using function floor with individual_bill as the argument. Step 3: Declare and initialize individual_bill_2 by using function round with individual_bill as the argument. In order to round individual_bill_3 to the nearest cent, you must multiply the argument of the function ceil by 100 and then divide the result of the function by 100. Finish the below function and call it from within your int main.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter16: Searching, Sorting And Vector Type
Section: Chapter Questions
Problem 23PE
icon
Related questions
Question

In C++

Create a program that will be used as a POS (Point of Sale) system in a restaurant. The bill_total is given as well as the number_of_guests. The 5 guests will be
splitting the bill evenly and so the individual_bill will be bill_total / number_of_guests. The POS will be used in three different locations, each with different
guidelines for printing bills.
At location 1, individual_bill_1 always rounds down to the nearest dollar.
At location 2, individual_bill_2 always rounds up to the nearest dollar.
At location 3, individual_bill_3 always rounds up to the nearest cent.
Determine what the individual_bill will be at each of the locations.
Step 1: Begin by declaring and initializing individual_bill.
Step 2: Declare and initialize individual_bill_1 by using <cmath> function floor with individual_bill as the argument.
Step 3: Declare and initialize individual_bill_2 by using <cmath> function round with individual_bill as the argument.
In order to round individual_bill_3 to the nearest cent, you must multiply the argument of the function ceil by 100 and then divide the result of the function by
100.
Finish the below function and call it from within your int main.
Transcribed Image Text:Create a program that will be used as a POS (Point of Sale) system in a restaurant. The bill_total is given as well as the number_of_guests. The 5 guests will be splitting the bill evenly and so the individual_bill will be bill_total / number_of_guests. The POS will be used in three different locations, each with different guidelines for printing bills. At location 1, individual_bill_1 always rounds down to the nearest dollar. At location 2, individual_bill_2 always rounds up to the nearest dollar. At location 3, individual_bill_3 always rounds up to the nearest cent. Determine what the individual_bill will be at each of the locations. Step 1: Begin by declaring and initializing individual_bill. Step 2: Declare and initialize individual_bill_1 by using <cmath> function floor with individual_bill as the argument. Step 3: Declare and initialize individual_bill_2 by using <cmath> function round with individual_bill as the argument. In order to round individual_bill_3 to the nearest cent, you must multiply the argument of the function ceil by 100 and then divide the result of the function by 100. Finish the below function and call it from within your int main.
void c_math_functions() {
}
double bill_total {102.78};
int number_of_guests {5};
//DO NOT MODIFY THE CODE ABOVE THIS LINE-
//----WRITE YOUR CODE BELOW THIS LINE----
//----WRITE YOUR CODE ABOVE THIS LINE-
//---- DO NOT MODIFY THE CODE BELOW THIS LINE-
cout << "The individual bill at location 1 will be $" << individual_bill_1 << "\n"
<< "The individual bill at location 2 will be $" << individual_bill_2 << "\n"
<< "The individual bill at location 3 will be $" << individual_bill_3 << endl;
Your output should look like this ...
On instructor@gryffindor: ~/CS1A/Section_11
instructor@gryffindor:~/CS1A/Section_11$
instructor@gryffindor:~/CS1A/Section_11$
The individual bill at location 1 will be $20
The individual bill at location 2 will be $21
The individual bill at location 3 will be $20.56
instructor@gryffindor:~/CS1A/Section_11$
g++ -std=c++20 -Wall main.cpp
./a.out
Transcribed Image Text:void c_math_functions() { } double bill_total {102.78}; int number_of_guests {5}; //DO NOT MODIFY THE CODE ABOVE THIS LINE- //----WRITE YOUR CODE BELOW THIS LINE---- //----WRITE YOUR CODE ABOVE THIS LINE- //---- DO NOT MODIFY THE CODE BELOW THIS LINE- cout << "The individual bill at location 1 will be $" << individual_bill_1 << "\n" << "The individual bill at location 2 will be $" << individual_bill_2 << "\n" << "The individual bill at location 3 will be $" << individual_bill_3 << endl; Your output should look like this ... On instructor@gryffindor: ~/CS1A/Section_11 instructor@gryffindor:~/CS1A/Section_11$ instructor@gryffindor:~/CS1A/Section_11$ The individual bill at location 1 will be $20 The individual bill at location 2 will be $21 The individual bill at location 3 will be $20.56 instructor@gryffindor:~/CS1A/Section_11$ g++ -std=c++20 -Wall main.cpp ./a.out
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Random Class and its operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,