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.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
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.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education