-- of 5 points Chapter 2: Programming Project 1 Unlimited tries (Financial application: calculate tips) Write a program
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
-- of 5 points Chapter 2: Programming Project 1 Unlimited tries (Financial application: calculate tips) Write a program
https://liangcpp.pearsoncmg.com/cpprevel2e.html. If you get a logic or runtime error, please refer to https://liangcpp.pearsoncmg.com/faq.html. 1 Enter your code
-- of 5 points Chapter 2: Programming Project 1 Unlimited tries (Financial application: calculate tips) Write a program that reads the subtotal and the gratuity rate, then computes the gratuity and total. For example, if the user enters 10 for subtotal and 15% for gratuity rate, the program displays $1.5 as gratuity and $11.5 as total. Sample Run Enter the subtotal and a gratuity rate: 10 15 The gratuity is $1.5 and total is $11.5 For a hint on this program, please see