d170.
飛蛾撲火(一)
--
me
| From: [203.64.138.42] |
發表日期
:
2009-12-16 12:00
#include<iostream>
#include<math.h>
using namespace std;
int main()
{
float len(float a,float b,float c,float d);
int n,x1,x2,x3,y1,y2,y3;
while (cin>>n)
{
for (int a=1; a<=n; a++)
{
cin>>x1>>y1>>x2>>y2>>x3>>y3;
if( (y2-y1)/(x2-x1)==(y3-y2)/(x3-x2) && len(x1,y1,x2,y2)>len(x2,y2,x3,y3))
cout<<"該死的東西!竟敢想讓我死!"<<endl;
else
cout<<"父親大人!母親大人!我快到了!"<<endl;
}
}
system("pause");
return 0;
}
float len(float a,float b,float c,float d)
{
return sqrt((a-c)*(a-c)+(b-d)*(b-d));
}