Problem:
Question- Write a program that operates a currency conversion between US Dollar (USD) and EURO (EUR).
a) Immediately after execution, the program asks the user to insert the exchange rate from EURO to USD(e.g. 1 EUR=1.27 USD).
b) Then, the program asks the user to select which currency conversion is desired.
c) Then, the program converts and displays (in a tabular form) the first ten amounts (1-10 USD or 1-10EUR) into the destination currency, using the appropriate exchange rate (EUR-> USD or USD->EUR).
d) The program loops over tasks 1, 2 and 3 to repeat the same procedure until the user entres an exchange rate of 0.
Please show code with comments so I can follow what you are doing.