Question: Using basic c++ write a separate code for the following problems. 5. Pennies for Pay Write a program that calculates the amount a person would
Using basic c++ write a separate code for the following problems.
5. Pennies for Pay
Write a program that calculates the amount a person would earn over a period of time if his/her salary is one penny the first day, two pennies the second day, 4 p the 3rd day and continues to double each day.
The program should display a table that shows the salary for each day and then show the total pay at the end of the period. The output should be displayed in dollars and not in pennies
Input Validation: Do not accept a number less than 1 for the number of days worked
5. Output
Write a loop that calculates total of the following series of numbers: 1/30 + 2/29 + 3/28 + ..29/2 + 30/1
Output
For how many days will you work? 10
DayPennies Earned
1 1
2 2
3 4
4 8
5 16
6 32
7 64
8 128
9 256
10 512
Total pay: $10.23
For how many days will you work? -2 The number of days must be at least 1. Enter the number of days: 5 DayPennies Earned
1 1
2 2
3 4
4 8
5 16
Total pay: $0.31
6. Total Number Series
Write a loop that calculates total of the following series of numbers:
1/30 + 2/29 + 3/28 + ..29/2 + 30/1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
