返回列表 發帖

stringstream 字串串流 (三)

將字串 "123 42 13 56 8 67 7" 以空白劈開後,垂直打印出來。
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  4. using namespace std;
  5. int main()
  6. {
  7.     string str="123 42 13 56 8 67 7";
  8.     stringstream ss;
  9.     ss<<str;
  10.     int n;
  11.     while(ss>>n)
  12.         cout<<n<<endl;
  13.     return 0;
  14. }
複製代碼

返回列表