You are viewing a single comment's thread. Return to all comments →
Here is my code!
#include <sstream> #include <vector> #include <iostream> using namespace std; vector<int> parseInts(string str) { stringstream mystring(str); vector<int> ints; char ch; int num; while (mystring >> num) { ints.push_back(num); mystring >> ch; } return ints; } int main() { string str; cin >> str; vector<int> integers = parseInts(str); for(int i = 0; i < integers.size(); i++) { cout << integers[i] << "\n"; } return 0; }
Seems like cookies are disabled on this browser, please enable them to open this website
StringStream
You are viewing a single comment's thread. Return to all comments →
Here is my code!