练习专区

今天的一小步就是明天的一大步
Problem 1126 判断平面上的三点
Accepted: 11   Total Submit: 42
Time Limit: 1000ms   Memory Limit: 30720KB
Description
平面上有三个点,通过调用Is_triangle()判断这三个点是否能构成三角形。点的结构为: struct POINT { int x,y; }; 函数功能如下: int Is_triangle(struct POINT p1,struct POINT p2,struct POINT p3) { if( ) return 1; else return 0; }
Input
输入有若干种情况,每行有三个点:(x1,y1),(x2,y2),(x3,y3)。
Output
每行输出一种情况,如果能构成三角形输出"good",否则"sorry"。
Sample Input
0 0 1 1 2 2
-1 0 1 0 0 1
Sample Output
sorry
good
Hint
提交     返回