// import becker.robots.*;

/** A program to test arithmetic
 *
 *  @author Duncan Buell
 *
 *  Program written:  14 October 2007
*/
public class Main
{
  public static void main (String[] args)
  {
    TestCode theTest = new TestCode();

//    theTest.doIntegerTest();
//    theTest.doDoubleTest1();
//    theTest.doDoubleTest2();
//    theTest.doDoubleTest3();

    theTest.doTenCentsTest();

  }
} // public class Main


