And vice versa these are the conversion rates needed for this program EUR = USD * 0.879872; AUD = USD * 1.233162; SGD = USD * 1.319025
And vice versa these are the conversion rates needed for this program
EUR = USD * 0.879872;
AUD = USD * 1.233162;
SGD = USD * 1.319025
You must create a program named CurrencyConversion.java that converts money between the following currencies.
Given one of the three currencies, the program should convert the input amount into one of the other currencies. For example, if you input one (1) U.S. dollar, and you decide to convert that one dollar to a pound, then the output should be .60.
Using the JOptionPane GUI, do the following.
Prompt the user for the currency code type.
Prompt the user for the amount of that currency.
Prompt the user for the currency code that the entered amount must be converted to.
Display the results in a JOptionPane message box.
CurrencyConversion Points Description
Standard header included 1 Must contain program's name, student name, and description of the program
Program compiles 1 Program does not have any error
Program executes 2 Program runs without any error
Use JOptionPane 8 Use JOptionPane for input and output
Compute conversion 8 Uses logic and correct formula to compute results
11 years ago
Purchase the answer to view it

- answer.zip