
/**
 * Convert a decimal number to the corresponding roman numeral.
 * 
 * @author (your name) 
 * @version (a version number or a date)
 */
public class romanConverter
{

    /**
     * Constructor for objects of class romanConverter
     */
    public romanConverter()
    {
        // nothing
    }

    /**
     * Convert the decimal number specified in the parameter to roman
     * 
     * @param  n   Enter a decimal number between 1 and 100
     */
    public void convert (int n)
    {
        int tens;   // use to hold the tens digit
        int ones;   // use to hold the ones digit
        
        // separate the number, n, into the tens digit and ones digit
        
        
        // an if statement to convert the tens digit to roman
        
        
        // an if statement to convert the ones digit to roman
        
    }
}
