https://docs.google.com/document/d/19nGo511MkJSPl7MQxoF9UWpFCbJzmH0hMe67XSWb6X0/edit?usp=sharing
https://docs.google.com/document/d/19nGo511MkJSPl7MQxoF9UWpFCbJzmH0hMe67XSWb6X0/edit?usp=sharing
//loan calculator
OUTPUT "Please enter the loan amount in dollars"
INPUT loanamount
OUTPUT "Enter the yearly interest rate %"
INPUT interest
OUTPUT "Please enter the loan period in months"
INPUT time
intpermonth = interest div 12
intmt = loanamount * intpermonth
inttotal = intmt * time
OUTPUT "The monthly payment is", intmt + (loanamount div 12)
OUTPUT "The total payment is", inttotal + loanamount
//