본문 바로가기
프로그래머스

간단한 식 계산하기 (C#)

by LemongO 2024. 6. 2.

📌프로그래머스 181865

💡풀이

  • 새로운 문자열 배열에 binomial을 ' '을 기준으로 분할한 값을 할당
  • 문자열의 [0] [2]를 int.Parse
  • 문자열 [1]의 값에 따라 계산을 다르게
public int 간단한식계산하기(string binomial)
{
    string[] strings = binomial.Split(' ');

    int a = int.Parse(strings[0]);
    int b = int.Parse(strings[2]);

    switch (strings[1])
    {
        case "+":
            return a + b;                    
        case "-":
            return a - b;
        case "*":
            return a * b;                    
    }

    return 0;
}

'프로그래머스' 카테고리의 다른 글

두 수의 합 (C#)  (1) 2024.06.03
배열 만들기 3 (C#)  (0) 2024.06.02
특별한 이차원 배열 1  (1) 2024.06.02
특별한 이차원 배열 2 (C#)  (0) 2024.06.02
가까운 1 찾기 (C#)  (0) 2024.06.02