#2999: REㄟ..


aacby321 (foreverlove)

學校 : 臺北市立成功高級中學
編號 : 8663
來源 : [218.227.42.252]
最後登入時間 :
2023-10-26 19:43:29
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));  
}   
#3013: Re:REㄟ..


leopan0922 (zz)

學校 : 臺北市立成功高級中學
編號 : 6612
來源 : [140.113.225.106]
最後登入時間 :
2016-08-15 15:44:07
d170. 飛蛾撲火(一) -- me | From: [58.115.139.88] | 發表日期 : 2009-12-16 23:17

#include  
#include  
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<<"該死的東西!竟敢想讓我死!"<        else 
          cout<<"父親大人!母親大人!我快到了!"<      }  
      
   
}  
 system("pause");  
 return 0;  
}  
float len(float a,float b,float c,float d)  
{  
  return sqrt((a-c)*(a-c)+(b-d)*(b-d));  

紅字的地方萬一等於0就爆了 
ZeroJudge Forum