Question: Code a C ++ program that allows you to calculate the final price of an item, taking into account the following: If the regular price
Code a C ++ program that allows you to calculate the final price of an item, taking into account the following:
If the regular price of the item is greater than $5, then a 20% is added to the regular price, obtaining the final price. Otherwise (if the regular price is $5 or below), only 11% is added to the regular price to get the final price. Make sure to use If, Else statements.
#include
using namespace std;
int main(){
??
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
