2. Write a C++ program that;
Takes in the weight of a person in Kilograms, converts andoutputs the equivalent weight in pounds. Format your output to 3decimal places. Your output should look like this
53.000 Kg is equivalent to 123.459 Ibs
(Note 1Kg = 2.2046226218488 lbs)
Takes in the price of an item on an online store in poundsterling, converts and outputs the equivalent price in U.S dollars.Format your output to 2 decimal places.
Your output should look like this
£24.49 is equivalent to $31.96
To output the pound symbol, you need to display char(156). 156signifies the pound notation's location on the ascii table shown inclass
cout << char(156);
(Note £1 = $1.3048)
*BOTH CONVERSIONS SHOULD BE DONE IN THE SAME PROGRAM*