Answer to Question #279491 in C++ for Alunsina

Question #279491

Draw a flowchart, write an algorithm and design a C++ program for a store owner who wants to give 10% discount to the purchases made by customers who are at least 65 years old. Use the selection structure.


1
Expert's answer
2021-12-15T07:00:02-0500
#include <bits/stdc++.h>
using namespace std;


int main()
{
    int age, price;
    
    cout<<"Enter the Amount:";
    
    cin>>price;
    
    cout<<"Enter your Age:";
    
    cin>>age;
    
    if (age >= 65)
    {
        price = price - (price * 0.1);
        
        cout<<"Your Total Amount is: "<<price<<endl;
    }
    else{
        cout<<"Your Total Amount is: "<<price<<endl;
    }
    
    return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog