// rootsMain.cc
// Main module for finding the roots of polynomials

#include "roots.h"
#include "rootsUI.h"

int main()
{
  float a,b,c;
  readCoefficients(a, b, c);
  float root1, root2;
  int numRoots = roots(a, b, c, root1, root2);
  reportRoots(a, b, c, numRoots, root1, root2);
}
