Make Unreal REAL.
article thumbnail
Level 0. 간단한 식 계산하기

 

 

#include <iostream>
#include <sstream>

using namespace std;

int solution(string binomial)
{
    istringstream iss(binomial);

    int a, b;
    char op;

    iss >> a >> op >> b;

    switch (op)
    {
    case '+': return a + b;
    case '-': return a - b;
    case '*': return a * b;
    default:  return 0;
    }
}

'자료구조 & 알고리즘 > 프로그래머스' 카테고리의 다른 글

Level 0. 배열의 원소 삭제하기  (0) 2023.07.06
Level 0. 주사위 게임 2  (0) 2023.07.05
Level 0. ad 제거하기  (0) 2023.07.03
Level 0. 9로 나눈 나머지  (0) 2023.07.02
Level 0. 문자열 뒤집기  (0) 2023.07.01
profile

Make Unreal REAL.

@diesuki4

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!

검색 태그