// rootsUI.h
// Header File
// Simple text-based interactive user interface for
// finding the roots of polynomials

extern void readCoefficients(float& a, float& b, float& c);

extern void reportRoots(float a, float b, float c,
			int numRoots, float root1, float root2);
