任务 - 点在哪里,在三角形内部或外部。我检查了小三角形和大三角形的 Heron 公式。然后比较它们的总和。很可能是功能“区域”中的错误。
#include <iostream>
#include <math.h>
using namespace std;
struct point
{
int x;
int y;
};
double length(point first, point second)
{
double katet1=second.x-first.x;
double katet2=second.y-first.y;
return(sqrt(katet1*katet1+katet2*katet2));
}
double area(point a, point b, point c)
{
double ab = length(a,b);
double bc = length(b,c);
double ca = length(c,a);
double p =(ab+bc+ca)/2;
double s = sqrt(p*(p-ab)*(p-bc)*(p-ca));
return(s);
}
int main()
{
int num;
cin>>num;
int win=0;
for(int i=0; i<num; i++)
{
point d,a,b,c;
cin>>d.x>>d.y>>a.x>>a.y>>b.x>>b.y>>c.x>>c.y;
double s1,s2,s3,s4;
s1=area(d,a,b);
s2=area(d,b,c);
s3=area(d,a,c);
s4=area(a,b,c);
if((s1+s2+s3)==s4)
win++;
}
cout<<win;
cin.get();
}
未通过所有测试。例如 test 1 1 1 0 0 2 2 0 3 必须返回 1 但返回 0。有什么问题?对不起我的英语不好。