malcolm movers charges a base rate of $200 per move plus $150 per hour and $2 per mile. write a program named moveestimator that prompts a user for and accepts estimates for the number of hours for a job and the number of miles involved in the move and displays the total moving fee.

Respuesta :

Here's a program called MoveEstimator that prompts the user to accept an estimate of the number of hours of work and miles the move will take and displays the total cost of the move:

  • x = int(input("number of hours for the job "))
  • y = int(input("number of miles involved "))
  • def MoveEstimator(x, y):
  • return 200 + 150*x + 2*y
  • print(MoveEstimator(x, y))

Computer programs are written by programmers. Writing the 1s and 0s in machine-readable machine language is very difficult, so computer programmers write them in programming languages. The format of the program determines the structure of the course. At AIR, the program format is specific to an academic component with some kind of program of study.

Learn more about A program here:- https://brainly.com/question/1538272

#SPJ4