Board logo

標題: stringstream 練習(二) - 字串分割 [打印本頁]

作者: 李泳霖    時間: 2024-2-3 17:02     標題: stringstream 練習(二) - 字串分割

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. stringstream ss;
  4. int n, sum=0;
  5. string str;
  6. int main()
  7. {
  8.     cout<<"請輸入一個加法算式 (譬如 5+7+2): ";
  9.     getline(cin,str);
  10.     replace(begin(str),end(str),'+',' ');
  11.     ss<<str;
  12.     while(ss>>n)
  13.         sum+=n;
  14.     cout<<sum<<endl;
  15.     return 0;
  16. }
複製代碼

作者: 張博翔    時間: 2024-2-3 17:20

此帖僅作者可見
作者: 江家同    時間: 2024-2-3 17:21

此帖僅作者可見




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2