Board logo

標題: 2025/3/28 課堂重點(昀杰) [打印本頁]

作者: 郭竑志    時間: 6 天前 18:55     標題: 2025/3/28 課堂重點(昀杰)

[課程重點]
字串分割 (二)
遞迴演算法
遞迴函式 (一) - 計算總和
作者: 陳昀杰    時間: 6 天前 19:52

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  4. using namespace std;
  5. int main()
  6. {
  7.     int sum=0,a;
  8.     string s;
  9.     cin>>s;
  10.     stringstream ss;
  11.     int f=0;
  12.     while(true)
  13.     {
  14.         f=s.find("+");
  15.         if(f<0)
  16.         {
  17.            break;
  18.         }
  19.         s.replace(f,1," ");
  20.     }
  21.     ss<<s;
  22.     while(ss>>a)
  23.     {

  24.        sum+=a;
  25.     }
  26.     cout<<sum;
  27.     system("pause");
  28.     return 0;
  29. }
複製代碼





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