zoj - 3488 - Conic Section

题意:判断一个给定的曲线是何种类型的曲线。

题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3488

——>>见到那么的一个图,以为很难,其实很水。

对于圆:保证a * c > 0 && a == c;

对于椭圆:保证a * c > 0 && a != c;

对于双曲线:保证a * c < 0;

除此之外为抛物线。

#include <iostream>
#include <cmath>

using namespace std;

const double eps = 1e-14;

int main()
{
    int T;
    double a, b, c, d, e, f;
    cin>>T;
    while(T--)
    {
        cin>>a>>b>>c>>d>>e>>f;
        if(a * c > 0 && fabs(a - c) >= eps) cout<<"ellipse"<<endl;
        else if(a * c > 0 && fabs(a - c) < eps) cout<<"circle"<<endl;
        else if(a * c < 0) cout<<"hyperbola"<<endl;
        else cout<<"parabola"<<endl;
    }
    return 0;
}


你可能感兴趣的:(zoj - 3488 - Conic Section)