#include<iostream>
using namespace std;
int main()
{
char name[25];
cout<<"Enter the name of the book- ";
cin>>name;
float price;
cout<<"Enter the price of the book- ";
cin>>price;
if(price>=1000)
{
cout<<"The discount on the book "<<name<<"is 20%";
}
if(price<1000 && price>=800)
{
cout<<"The discount on the book "<<name<<"is 15%";
}
if(price<800 && price>=500)
{
cout<<"Our sir did not mention how much discount has to be given on the book "<<name<<"!!!!";
}
if(price<500)
{
cout<<"No discount is given on the book "<<name;
}
}
using namespace std;
int main()
{
char name[25];
cout<<"Enter the name of the book- ";
cin>>name;
float price;
cout<<"Enter the price of the book- ";
cin>>price;
if(price>=1000)
{
cout<<"The discount on the book "<<name<<"is 20%";
}
if(price<1000 && price>=800)
{
cout<<"The discount on the book "<<name<<"is 15%";
}
if(price<800 && price>=500)
{
cout<<"Our sir did not mention how much discount has to be given on the book "<<name<<"!!!!";
}
if(price<500)
{
cout<<"No discount is given on the book "<<name;
}
}
No comments:
Post a Comment