Asked by Alex

Write the pseudocode for a method that receives as input the cost of a meal, and then adds a 9% tax rate, and then outputs a 15% tip on top of the price+tax

Answers

Answered by MathMate
Pseudocode is almost like human language

input billed_amount;
amount_with_tax=billed_amount * 1.09
Total=amount_with_tax*1.15
output total
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions