返回列表 發帖
  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. int main()
  4. {
  5.     cin.tie(0);
  6.     cin.sync_with_stdio(0);
  7.     string a="abc";
  8.     string b="狗咬豬";
  9.     int c=12;
  10.     float d=3.456;
  11.     string e="...";
  12.     stringstream ss;
  13.     ss<<a<<b<<c<<d<<e;
  14.     string str;
  15.     ss>>str;
  16.     cout<<str<<endl;
  17.     cout<<ss.str()<<endl;

  18.     return 0;
  19. }
複製代碼

TOP

返回列表