Question
Create a program that prompts a student for the number of credit hours in which the student is enrolled, and the amount of money spent on books. Display, with full explanation, the student’s total fees. The total is $85 per credit hour, plus the amount for books, plus a $65 athletic fee.
Answers
oobleck
display "enter hours, books"
read hrs, books
cost = 85*hrs + books + 65
print "total cost=",cost
read hrs, books
cost = 85*hrs + books + 65
print "total cost=",cost