Question: Looking for a way to put this program into Raptor. i've found the python now I just need to get it converted into Raptor using
Looking for a way to put this program into Raptor. i've found the python now I just need to get it converted into Raptor using the input / output / assignments etc

Write a program that asks the user to enter the monthly costs for the following expenses incurred from operating his or her automobile: loan payment, insurance, gas, oil, tires, and maintenance. The program should then display the total monthly cost of these expenses, and the total annual cost of these expenses In python using - get_loan_pmt)-get_insurance() - get_gas() - get_get_oil) get_tires)- get_maint( )- show_expenses) Expert Answer An onymous answered this 387 answers Was this answer helpful? def get_loan_pmt0 loan-pmt-amt = int(raw-input( "Enter monthly loan payment amount: ")) return loan_pmt_amt def get_insurance0) insurance_amt int(raw_input( "Enter monthly insurance amount: ") return insurance_amt def get_gas0 gas-amt = int(raw_input( "Enter monthly gas amount : ")) return gas_amt def get_oil0 oil-amt int(raw_input( "Enter monthly oil amount : ")) return oil amt def get_tires0) ires amtint(raw_input "Enter monthly tires amount:") return tires_amt def get_maint0 maintenance int(raw_input( "Enter monthly maintenance amount:")) return maintenance def show_expenses0 loan-pmt_amt-get-loan-pmt() insurance_amt get_insurance0) gas-amt = get-gas() oil-amt = get-oil() tires_amt-get_tires0 maintenance = get-maint() monthly-total = loan-pm-amt + insurance-amt + gas-amt + oil-amt + tires-amt + maintenance yearly-tota12" monthly-total print "Total monthly cost of expense is: "monthly_total print "Total yearly cost of expense is: "yearly_total print progam to calculate total monthly and annual expenses show_expenses0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
