프로그래머스 120853 컨트롤 제트

1 개요[ | ]

프로그래머스 120853 컨트롤 제트

2 C++[ | ]

#include <string>
#include <vector>
#include <sstream>
using namespace std;

int solution(string s) {
    stringstream ss(s);
    int answer = 0;
    int num = 0;
    string x;
    while(getline(ss, x, ' ')) {
        if(x == "Z") {
            answer -= num;
            continue;
        }
        num = stoi(x);
        answer += num;
    }
    return answer;
}