/*
 * RunMathDrill.java      Authors: Koffman and Wolz
 * Application that tests class MathProblem.
 */
public class RunMathDrill {

   public static void main(String[] args) {
 
     MathDrill mD = new MathDrill();

     mD.doMultipleProblems();

     System.out.print("You had " + mD.getCorrect() +
                      " correct answers and " +
                      mD.getIncorrect() + " incorrect answers");
   }
}

