
Write a C++ program to compute the gross pay. The inputs of your
E.g. 50 hours worked and $15/hour -> 40*$15 + 10 * $15*1.5 = $600 + $225 = $825
E.g. 60 hours worked and $20/hour -> 40 * $20 + 14 * $20 * 1.5 + 6 * $20 * 2 = $800+?+?
Sample Input and Output – see Program 3-16
Enter the hours worked per week: 50.0
Enter the hourly pay : 15.00
Gross Pay is:
Regular hours: 40 @ $15.00 $600.00
Overtime 40 to 54 hours: 10 @ $22.50 $225.00
Overtime over 54 hours: 0 @ $30.00 0.00
Total Gross Pay $825.00
in c++

Trending nowThis is a popular solution!
Step by stepSolved in 2 steps with 2 images

- Write a program to print all fibonacci numbers less than k, where k is a non-negative integer taken input from the user. Given: k < 1000. Programming language: C++arrow_forwardWrite an improved version of the futval . py program from Chapter 2.Your program will prompt the user for the amount of the investment, theannualized interest rate, and the number of years of the investment. Theprogram will then output a nicely formatted table that tracks the value ofthe investment year by year. Your output might look something like this: Year Value----------------0 $2000 . 001 $2200 . 002 $2420 . 003 $2662 . 004 $2928 . 205 $3221 . 026 $3542 . 127 $3897 . 43arrow_forwardWrite a program to print all fibonacci numbers less than k, where k is a non-negative integer taken input from the user. Given: k < 1000. Programming language: C++arrow_forward
- using C++, refer the the 2 pics attached.arrow_forwardWrite a program in C++ which adds, subtracts, multiplies, divides and perform exponentiation on two specific numbers. The two numbers should be entered by the user. Each output should include a string describing what the numerical output is being displayed. Use the if-else-if ladder so that the user is able to select which mathematical function to perform. Make sure the program has a neat menu for the user to use to select their choice. Also, avoid having the computer perform a division by zero if the user attempts it by outputting a warning message in its place (use an if-else statement). Include your C++ source code as well as the output of your program in your submissionarrow_forwardJustin receives 52 weekly paychecks per year. Each week, he contributes a specific percentage of his gross weekly pay to his retirement plan at work. His employer also contributes to his retirement plan, but at a different rate. Justin wants a program that calculates and displays the total annual contribution made to his retirement plan by him and his employer. Desk-check your solution’s algorithm using $640 as the gross weekly pay, 6% as Justin’s contribution rate, and 4% as the employer’s contribution rate. Then desk-check it using your own set of data.arrow_forward
- Write a program in C++ which adds, subtracts, multiplies, divides and performs exponentiation on two specific numbers. The two numbers should be entered by the user. Each output should include a string describing what the numerical output is being displayed. Use the if-else-if ladder so that the user is able to select which mathematical function to perform. Make sure the program has a neat menu for the user to use to select their choice. Also, avoid having the computer perform a division by zero if the user attempts it by outputting a warning message in its place (use an if-else statement). Include your C++ source code as well as the output of your program in your submissionarrow_forwardWrite a complete C++ program that prints the change in population of the the United States: p = p + Bp Dp where p is the population, B is the birth rate of 12.4 births for every 1000 people (12.4/1000) each year, and D is the death rate of 8.4 for every 1000 people (8.4/1000). In 2017, the population of United States was 325.7 million. Your program should ask the user for the number of years and print expected population over those years starting from 2017. Each line should have: the year and the population (in millions). A sample run: Please enter the number of years: 10 Year 2017 325.70 Year 2018 327.00 Year 2019 328.31 Year 2020 329.62 Year 2021 330.94 Year 2022 332.27 Year 2023 333.60 Year 2024 334.93 Year 2025 336.27 Year 2026 337.61arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





