返回列表 發帖
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5.     string str="123 42 13 56 8 67 7";
  6.     stringstream ss;
  7.     ss<<str;
  8.     int n;
  9.     while(ss>>n)
  10.         cout<<n<<endl;
  11.     return 0;
  12. }
複製代碼

TOP

返回列表