▶ 다음과 같은 수식이 string으로 주어질 때 '+' 또는 '-' 연산자로 잘라 저장하는 함수를 작성해 보자.
123+34+1-45-34+345
#include <iostream>
#include <string>
#include <vector>
#include <sstream>
#include <cstdlib>
using namespace std;
vector<string> split(string input, char ch)
{
vector<string> result;
stringstream mystream(input);
string splitdata;
while(getline(mystream, splitdata, ch))
{
result.push_back(splitdata);
}
return result;
}
int main()
{
string st;
cin >> st;
vector<string> result = split(st, '-');
for(int i=0;i<result.size();i++)
cout << result[i] << ' ';
cout << '\n';
for(int a=0;a<result.size();a++)
{
vector<string> add = split(result[a], '+');
int hap = 0;
for(int i=0;i<add.size();i++)
{
cout << add[i] << ' ';
hap += atoi(add[i].c_str());
}
cout << "hap = " << hap<<'\n';
}
return 0;
}
'C++ STL' 카테고리의 다른 글
26. c++ stl set container - 3문제 (0) | 2021.06.24 |
---|---|
25. c++ stl lower_bound() upper_bound() (0) | 2020.07.24 |
24. c++ stl map 컨테이너 (0) | 2020.07.23 |
23. c++ stl vector 중복 원소 제거 - unique() erase() (0) | 2020.07.19 |
22. c++ stl vector에서 중간 원소 삭제하기 (0) | 2020.07.17 |