#include<iostream>
using namespace std;
int main()
{
int money;
cout<<"How much money do you have"<<endl;
cin>>money;
if (money>=1000)
{
cout<<"You Have "<<money<<endl;
cout<<"Go to Starbucks Buddy!"<<endl;
}
else if(money>700)
{
cout<<"You have "<<money<<endl;
cout<<"Go to CCD"<<endl;
}
else if (money>100)
{
cout<<"You have "<<money<<endl;
cout<<"Go to Normal Shop"<<endl;
}
else
{
cout<<"Gareeb tere pass sirf "<<money<<" rupay hai"<<endl;
cout<<"Isiliye Ghar Baitho"<<endl;
}
}
To embed this program on your website, copy the following code and paste it into your website's HTML: