Task Description
利用struct給出二座標,並計算出第幾象限。
12345 typedef struct point_t point_t;struct point_t { double x; double y;};
Input Format
輸入測資檔包含2的輸入測資x, y。
Output Format
利用x, y算出在第幾象限
Sample Input
1 -1 3
Sample Output
1 第二象限