Question

Week 5 Project Write a program that calculates the amount of money a person would earn...

Week 5 Project

Write a program that calculates the amount of money a person would earn over a period of time if his or her salary is one penny the first day, two pennies the second day, four pennies the third day, and continues to double each day. Output the amount earned each day .. and the total pay at the end.

The Algorithm (Plan) for your program would be:

Ask the user for the number of days to be worked

Verify that the amount entered is positive, and if not, continue to ask the fuser or an amount ..until a valid number is entered

For each day worked

      Calculate the pay

      Print out the pay

      Add the daily pay to the final total

Print out the final total of pennies

Print out the final total in dollars and cents form

SAMPLE OUTPUT would look like:

How many days will you work? -5

Please reenter .. days must be positive -10

Please reenter .. days must be positive 0

Please reenter .. days must be positive 16

Day 1 : 1 pennies

Day 2 : 2 pennies

Day 3 : 4 pennies

Day 4 : 8 pennies

Day 5 : 16 pennies

Day 6 : 32 pennies

Day 7 : 64 pennies

Day 8 : 128 pennies

Day 9 : 256 pennies

Day 10 : 512 pennies

Day 11 : 1024 pennies

Day 12 : 2048 pennies

Day 13 : 4096 pennies

Day 14 : 8192 pennies

Day 15 : 16384 pennies

Day 16 : 32768 pennies

Total amount earned 65535 pennies

or ..655 dollars and 35 cents

0 0
Add a comment Improve this question Transcribed image text
Answer #1

please go threw code and output .

please follow indentation while copying code.

CODE:

def countWork(days):
        totalEarn = 1
        i = 1
        temp =2
        for i in range(days):
                print "Day %(first)d : %(second)d Pennies"% {"first": i, "second":totalEarn}
                temp += temp*i;
                totalEarn = totalEarn*2
        return totalEarn-1

def main():
        days = input("How many days will you work?")
        while True:
                if(days > 0):
                        break
                else:
                        days=input("Please reenter .. days must be positive")
        countWork(days)
        total = countWork(days)
        doller=total/100
        pennies = total%100
        print("Total amount earned %(first)d pennies"% {"first":total})
        print("or ..%(first)d doller and %(second)d cents"%{"first":doller, "second":pennies})

main()

OUTPUT:

Add a comment
Know the answer?
Add Answer to:
Week 5 Project Write a program that calculates the amount of money a person would earn...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Write a program using Python that calculates the amount of money a person would earn over...

    Write a program using Python that calculates the amount of money a person would earn over a period of time if his or her salary is one penny the first day, two pennies the second day, and continues to double each day. The program should ask the user for the number of days. Display a table showing what the salary was for each day, then show the total pay at the end of the period. The output should be displayed...

  • Show Me The Money. (15 points) Write a C++ program that calculates how much a person...

    Show Me The Money. (15 points) Write a C++ program that calculates how much a person earns in a month if the salary is one penny the first day, two pennies the second day, four pennies the third day, and so on, with the daily pay doubling each day the employee works. The program should ask the user for the number of days the employee worked during the month and should display a table showing how much the salary was...

  • Write a Java program that calculates how much a person would earn after a period of...

    Write a Java program that calculates how much a person would earn after a period of time, according to the following rules: 1. The starting salary for the first day is $1. 2. The salary will double each day. Ask the user to input the number of days worked. The output should display how much the salary was for each day worked, and show the total pay at the end of the work period. Get output similar to the sample...

  • In Python. Write a program that will calculate the amount of money a person would earn...

    In Python. Write a program that will calculate the amount of money a person would earn over a period of time if his/her salary is one penny the first day and two pennies for the second day, and continue to double each day. Hints: Declare variables Get the number of days from the user. Show the salary table for each day 4. Use ‘for loop’ to loop through the range of days (1, num_days +1) 5. Display the total pay...

  • Write a program that calculates the amount a person would earn over a 30-day period of...

    Write a program that calculates the amount a person would earn over a 30-day period of time if his/her salary is one penny the first day, two pennies the second day, and continues to double each day. The program should display a table showing the salary for each day, and then show the total pay at the end of the period. The output should be displayed in a dollar amount, not the number of pennies. A sample output might look...

  • HTML only Design and implement a program that calculates the amount of money a person would...

    HTML only Design and implement a program that calculates the amount of money a person would earn over a period of time if his or her salary is one penny the first day, two pennies the second day, and continues to double each day. The program should:ask the user for the number of daysdisplay a table showing what the salary was for each daythen show the total pay at the end of the period.The output should be displayed in the...

  • <!DOCTYPE html> <html> <body> <script> // // Write a function that calculates the amount of money...

    <!DOCTYPE html> <html> <body> <script> // // Write a function that calculates the amount of money a person would earn over // a period of years if his or her salary is one penny the first day, two pennies // the second day, and continues to double each day. The program should ask the // user for the number of years and call the function which will return the total // money earned in dollars and cents, not pennies. Assume...

  • In Java. Use the concept of LOOPS: 2.Write a program that calculates the amount a person...

    In Java. Use the concept of LOOPS: 2.Write a program that calculates the amount a person would earn over a period of time if his or her salary is one penny the first day, two pennies the second day, and continues to double each day. The program should display a table showing the salary for each day, and then show the total pay at the end of the period. The output should be displayed in a dollar amount, not the...

  • Use program control statements in the following exercises: Question 1 . Write pseudocode for the following:...

    Use program control statements in the following exercises: Question 1 . Write pseudocode for the following: • Input a time in seconds. • Convert this time to hours, minutes, and seconds and print the result as shown in the following example: 2 300 seconds converts to 0 hours, 38 minutes, 20 seconds. Question 2. The voting for a company chairperson is recorded by entering the numbers 1 to 5 at the keyboard, depending on which of the five candidates secured...

  • Create a modular program using structured programming to store the amount of money a local store...

    Create a modular program using structured programming to store the amount of money a local store made in sales for each day of the past week. The user will be given the option to enter an amount for the next day, compute the average, find the highest amount, find the lowest amount, or print all the information including the daily sales with the average, highest, and lowest amount. When the user chooses an option to enter an amount for the...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT