Write a program that allows a user to enter a number of values, the program should then convert the values entered in pounds (GBP) into a number of different currencies. The menu should look something like this:
1. Enter values and type -1 to stop
2. Euros
3. Dollars
4. Yen
5. Rupees
6. Exit
When 2, 3, 4 or 5 are selected the program should display each value entered in both the original pounds and the converted currency, along with a total of all numbers and converted total.
Things to think about:
• How many methods will you need? Work out what functions the code has to do.
• How will you display the menu?
• What are you going to do with the numbers entered by the user?