Difference between revisions of "Currency Converter"

From CompSciWiki
Jump to: navigation, search
m (Removed <pre> tags from SolutionCode. Replaced SolutionCode pipe characters with the {{!}} template.)
(Changed to utilize the CodeBlock template)
Line 27: Line 27:
 
|Solution=
 
|Solution=
 
First we declare the variables we will need to solve the problem.
 
First we declare the variables we will need to solve the problem.
<pre>
+
{{CodeBlock
 +
|Code=
 
//declare the variables
 
//declare the variables
 
String currencyTo;
 
String currencyTo;
Line 37: Line 38:
 
double USDtoCAD;
 
double USDtoCAD;
 
boolean done = false;
 
boolean done = false;
</pre>
+
}}
 
Next, we open the main while loop. The program will continue to run until the user clicks Cancel on
 
Next, we open the main while loop. The program will continue to run until the user clicks Cancel on
 
one of the input dialog boxes.
 
one of the input dialog boxes.
 
<br>
 
<br>
 
This will cause done to equal true, and the program will exit the loop.
 
This will cause done to equal true, and the program will exit the loop.
<pre>
+
{{CodeBlock
 +
|Code=
 
while(!done)
 
while(!done)
 
{
 
{
 
     //all of the code will go in here
 
     //all of the code will go in here
 
}
 
}
</pre>
+
}}
 
The first input from the user will be the currency that they want to convert to. Since we are only
 
The first input from the user will be the currency that they want to convert to. Since we are only
 
converting between two currencies, the other currency will obviously be the one we are converting
 
converting between two currencies, the other currency will obviously be the one we are converting
 
from. Note that if currency is null, the program will not enter this section of code. If the user entered something other than "CAD" or "USD", we will keep looping until one of these two values is entered.
 
from. Note that if currency is null, the program will not enter this section of code. If the user entered something other than "CAD" or "USD", we will keep looping until one of these two values is entered.
<pre>
+
{{CodeBlock
 +
|Code=
 
//get the currency to which we will be converting
 
//get the currency to which we will be converting
 
currencyTo = JOptionPane.showInputDialog("Enter the currency you are converting to " +
 
currencyTo = JOptionPane.showInputDialog("Enter the currency you are converting to " +
Line 63: Line 66:
 
                         "- type either CAD or USD:");
 
                         "- type either CAD or USD:");
 
}
 
}
</pre>
+
}}
 
Next we will get the current conversion rate from the user. Although we could just hard code this into the program by initializing the conversion rate variables, doing it this way makes the program more flexible.
 
Next we will get the current conversion rate from the user. Although we could just hard code this into the program by initializing the conversion rate variables, doing it this way makes the program more flexible.
<pre>
+
{{CodeBlock
 +
|Code=
 
//get the current rate
 
//get the current rate
 
if(currencyTo.equals("CAD"))
 
if(currencyTo.equals("CAD"))
Line 85: Line 89:
 
     }
 
     }
 
}
 
}
</pre>
+
}}
 
Now we will get the user to enter the amount they wish to convert, making sure that the amount they enter is not null and that it is greater than or equal to zero. Notice that we must convert input
 
Now we will get the user to enter the amount they wish to convert, making sure that the amount they enter is not null and that it is greater than or equal to zero. Notice that we must convert input
 
from a string to a double on each iteration, otherwise we will get an error in the second loop condition when we try to compare mismatched data types.  
 
from a string to a double on each iteration, otherwise we will get an error in the second loop condition when we try to compare mismatched data types.  
<pre>
+
{{CodeBlock
 +
|Code=
 
//get an amount to convert
 
//get an amount to convert
 
input = JOptionPane.showInputDialog("Enter the dollar amount to be converted.");
 
input = JOptionPane.showInputDialog("Enter the dollar amount to be converted.");
Line 101: Line 106:
 
     }
 
     }
 
}
 
}
</pre>
+
}}
 
The final step is to perform the conversion and print the result.
 
The final step is to perform the conversion and print the result.
<pre>
+
{{CodeBlock
 +
|Code=
 
//perform the conversion
 
//perform the conversion
 
if(currencyTo.equals("CAD"))
 
if(currencyTo.equals("CAD"))
Line 119: Line 125:
 
JOptionPane.showMessageDialog("$" + amount + " " + currencyFrom + " = $" + newAmount + " " +
 
JOptionPane.showMessageDialog("$" + amount + " " + currencyFrom + " = $" + newAmount + " " +
 
                               currencyTo);
 
                               currencyTo);
</pre>
+
}}
 
|SolutionCode=import java.swing.*;
 
|SolutionCode=import java.swing.*;
  

Revision as of 16:24, 4 December 2011

Back to the Program-A-Day homepage

Problem

This program will convert dollar amounts from Canadian to US dollars, and vice versa. There will be three input dialog boxes, implemented using JOptionPane.showInputDialog. The first input will ask the user for the currency to which they would like to convert, either CAD or USD. The next input asks for the current conversion rate to the desired currency, and the final input asks for the dollar amount to be converted. The program will then display a dialog box with the dollar amounts in both the original currency and the new currency.

This program will require nesting of if statements and loops within one another as well as string comparisions. There should also be some input checking to ensure that inputs are valid, and that all dollar amounts are greater than or equal to zero. Use a boolean variable called done to check whether the value of the first input is null. If the user clicks Cancel, the program will exit.

 

By Students...

Debugging tends to be one of the most frustrating parts of programming, and it can take a lot of practice to get your programs working correctly on the first try. Although the error messages will always tell you what went wrong, they won't always tell you where or why the error occurred. When I have difficulty debugging a program, I often make a diagram or calculate by hand exactly what my code is doing. I find this to be the fastest way to determine what the problem is when it's not obvious. From programs that sort data to programs that perform complex simulations, this has always been a helpful strategy when I get stuck.

Solution

First we declare the variables we will need to solve the problem.

 //declare the variables
String currencyTo;
String currencyFrom;
String input;
double amount = 0;
double newAmount = 0;
double CADtoUSD;
double USDtoCAD;
boolean done = false; 

Next, we open the main while loop. The program will continue to run until the user clicks Cancel on one of the input dialog boxes.
This will cause done to equal true, and the program will exit the loop.

 while(!done)
{
    //all of the code will go in here
} 

The first input from the user will be the currency that they want to convert to. Since we are only converting between two currencies, the other currency will obviously be the one we are converting from. Note that if currency is null, the program will not enter this section of code. If the user entered something other than "CAD" or "USD", we will keep looping until one of these two values is entered.

 //get the currency to which we will be converting
currencyTo = JOptionPane.showInputDialog("Enter the currency you are converting to " +
             "- type either CAD or USD:");

if(currencyTo != null)
    {
        while(!currencyTo.equals("CAD") && !currency.equals("USD"))
	{
	    currencyTo = JOptionPane.showInputDialog("Enter the currency you are converting to " +
                         "- type either CAD or USD:");	
	} 

Next we will get the current conversion rate from the user. Although we could just hard code this into the program by initializing the conversion rate variables, doing it this way makes the program more flexible.

 //get the current rate
if(currencyTo.equals("CAD"))
{
    input = JOptionPane.showInputDialog("Enter the current USD to CAD conversion rate");

    if(input != null)
    {
        USDtoCAD = Double.parseDouble(input);
    }
}
else   //currency is USD
{
    input = JOptionPane.showInputDialog("Enter the current CAD to USD conversion rate");

    if(input != null)
    {
        CADtoUSD = Double.parseDouble(input);
    }
} 

Now we will get the user to enter the amount they wish to convert, making sure that the amount they enter is not null and that it is greater than or equal to zero. Notice that we must convert input from a string to a double on each iteration, otherwise we will get an error in the second loop condition when we try to compare mismatched data types.

 //get an amount to convert
input = JOptionPane.showInputDialog("Enter the dollar amount to be converted.");

while(input == null 

The final step is to perform the conversion and print the result.

 //perform the conversion
if(currencyTo.equals("CAD"))
{
    newAmount = amount * USDtoCAD;
    currencyFrom = "USD";
}
else
{
    newAmount = amount * CADtoUSD;
    currencyFrom = "CAD";
}

//print the result
JOptionPane.showMessageDialog("$" + amount + " " + currencyFrom + " = $" + newAmount + " " +
                              currencyTo); 

Code

Solution Code

Back to the Program-A-Day homepage