[백준] 11758번 : CCW - C#

강재원·2022년 10월 25일
0

[코딩테스트] C#

목록 보기
147/200



https://www.acmicpc.net/problem/11758

using System;

class Program
{
    static void Main() {
        string[] s=Console.ReadLine().Split(' ');
        string[] s1=Console.ReadLine().Split(' ');
        string[] s2=Console.ReadLine().Split(' ');
        int x1=int.Parse(s[0]);
        int y1=int.Parse(s[1]);
        int x2=int.Parse(s1[0]);
        int y2=int.Parse(s1[1]);
        int x3=int.Parse(s2[0]);
        int y3=int.Parse(s2[1]);
        
        int a=x1*y2+x2*y3+x3*y1;
        int b=x2*y1+x3*y2+x1*y3;
        
        if(a-b>0) Console.Write("1");
        else if(a-b<0) Console.Write("-1");
        else Console.Write("0");
    }
}
profile
개념정리 & 문법 정리 & 알고리즘 공부

0개의 댓글