hanshu.cpp 222 B

123456789101112
  1. #include <iostream>
  2. #include <math.h>
  3. using namespace std;
  4. int main (){
  5. double a,b,c,x,y;
  6. cin>>a>>b>>c;
  7. x=-b/(a*2);
  8. y=((4*a*c)-b*b)/(4*a);
  9. cout<<"("<<x<<","<<y<<")";
  10. system("pause");
  11. return 0;
  12. }