// Lab 3: CurrencyConverter.java
// A program which converts between various currencies (US Dollars, British
// Pounds, Euros, Japanese Yen, Singapore Dollars, and Chinese Yuan) multiple
// times.  After each conversion, the program will ask the user whether or not
// he/she would like to convert again.
// Author:
// Lab section:

public class CurrencyConverter
{
    // number of currencies
    public static final int NUM_CURRENCIES      = 6;
    // constants to define currencies
    public static final int US_DOLLAR           = 0;
    public static final int BRITISH_POUND       = 1;
    public static final int EURO                = 2;
    public static final int JAPANESE_YEN        = 3;
    public static final int SINGAPORE_DOLLAR    = 4;
    public static final int CHINESE_YUAN        = 5;
    // conversion rates from US dollars to the other five currencies
    public static final double USD_TO_BRITISH_POUND      = 0.630;
    public static final double USD_TO_EURO               = 0.744;
    public static final double USD_TO_JAPANESE_YEN       = 82.996;
    public static final double USD_TO_SINGAPORE_DOLLAR   = 1.289;
    public static final double USD_TO_CHINESE_YUAN       = 6.584;
    
    // main method
    public static void main(String[] args)
    {
    }
}