// Program function demonstrates the use of library and // user-defined functions. #include #include using namespace std; float answer(float, float, float); int main () { cout.setf(ios::fixed, ios::floatfield); cout.setf(ios::showpoint); cout << answer(_____, _____, _____); return 0; } float answer(float one, float two, float three) { return ((- two + sqrt(pow(two, 2) - (_____ * one * three))) / (_____ * one)); }