No Description

QuadraticFormula.cpp 365B

123456789101112131415161718192021
  1. /* Ive changed the type of the function to double, */
  2. /* so it is consistent with the type that sqrt returns */
  3. #include "frog.h"
  4. double frog::QuadraticPlus(int a, int b, int c){
  5. double result;
  6. // YOUR CODE HERE
  7. return result;
  8. }
  9. double frog::QuadraticMinus(int a, int b, int c){
  10. double result;
  11. // YOUR CODE HERE
  12. return result;
  13. }