d170.
飛蛾撲火(一)
--
me
| From: [118.232.1.202] |
發表日期
:
2010-05-07 18:19
#include<iostream>
using namespace std;
int main()
{int a,b,c,d,e,f,g,h;
while(cin>>a)
{for(b=0;b<a;b++)
{cin>>c>>d>>e>>f>>g>>h;
if(c<g&&d<h&&e>g&&f>h)
{if((e-g)*(h-d)==(f-h)*(g-c))
cout<<"該死的東西!竟敢想讓我死!"<<endl;
else
cout<<"父親大人!母親大人!我快到了!"<<endl;
}
else if(c>g&&d>h&&e<g&&f<h)
{if((c-g)*(h-f)==(d-h)*(g-e))
cout<<"該死的東西!竟敢想讓我死!"<<endl;
else
cout<<"父親大人!母親大人!我快到了!"<<endl;
}
else
cout<<"父親大人!母親大人!我快到了!"<<endl;
}
}
return 0;
}