標題:
2025/3/28 課堂重點(昀杰)
[打印本頁]
作者:
郭竑志
時間:
6 天前 18:55
標題:
2025/3/28 課堂重點(昀杰)
[課程重點]
字串分割 (二)
遞迴演算法
遞迴函式 (一) - 計算總和
作者:
陳昀杰
時間:
6 天前 19:52
#include<iostream>
#include<cstdlib>
#include<sstream>
using namespace std;
int main()
{
int sum=0,a;
string s;
cin>>s;
stringstream ss;
int f=0;
while(true)
{
f=s.find("+");
if(f<0)
{
break;
}
s.replace(f,1," ");
}
ss<<s;
while(ss>>a)
{
sum+=a;
}
cout<<sum;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2