Computer Science, asked by saisowmyapratapa, 1 month ago

Question 1 : Write a program to prompt the
user for days and rate per day to compute
total pay. Use 50 days and a rate of 3.5 per
day to test the program. Total pay is equal
to (days* Rate per day). You should use
input to read a string and float() to convert
the string to a number. Don't worry about
error checking or bad user data. Good job!​

Answers

Answered by anamikabanka1203
0

Answer:

12. 5

Explanation:

Hope this will help you to get answer

Answered by Anonymous
3
  • 4.6 Write a program to prompt the user for hours and rate per hour using input to compute gross pay. Pay should be the normal rate for hours up to 40 and time-and-a-half for the hourly rate for all hours worked above 40 hours. Put the logic to do the computation of pay in a function called computepay() and use the function to do the computation. The function should return a value. Use 45 hours and a rate of 10.50 per hour to test the program (the pay should be 498.75). You should use input to read a string and float() to convert the string to a number. Do not worry about error checking the user input unless you want to - you can assume the user types numbers properly. Do not name your variable sum or use the sum() function.

hope it's helpful for you

Similar questions