標題:
2024/11/29 課堂重點(若恩)
[打印本頁]
作者:
郭竑志
時間:
6 天前 16:39
標題:
2024/11/29 課堂重點(若恩)
本帖最後由 郭竑志 於 2024-11-29 21:18 編輯
[課堂重點]
字串分割 (一)
find() 與 rfind() 函式
遞迴演算法
遞迴函式 (一)
遞迴函式 (三)
[今日作業]
stringstream 字串串流 (三)
遞迴函式 (二)
作者:
何若恩
時間:
6 天前 20:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="123.45.6789";
str+=".";
string res[50];
int index=0;
string tmp="";
for(int i=0; i<str.size(); i++)
{
if(str[i]=='.')
{
res[index]=tmp;
tmp="";
index++;
}else
{
tmp+=str[i];
}
}
for(int i=0; res[i]!=""; i++)
cout<<res[i]<<endl;
system("pause");
return 0;
}
複製代碼
作者:
何若恩
時間:
6 天前 20:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
string str="Hello world!";
cout<<str<<endl;
cout<<"字元'o'的索引位置(由前往後找):"<<str.find('o')<<endl;
cout<<"字元'o'的索引位置(由後往前找):"<<str.rfind('o')<<endl;
cout<<"字串'llo'的索引位置(由前往後找):"<<str.find('llo')<<endl;
cout<<"字元 'l' 的索引位置 (由前往後自第4個位置開始查找): "<<str.find('l',4)<<endl;
int res=str.find('a');
cout<<"字元 'a' 的索引位置 (由前往後查找): "<<res<<endl;
return 0;
}
複製代碼
作者:
郭竑志
時間:
6 天前 21:02
回復
1#
郭竑志
#include<iostream>
#include<cstdlib>
using namespace std;
int ADD(int x, int y)
{
return x+y;
}
int main()
{
int a, b;
cin>>a>>b;
cout<<ADD(a,b);
}
複製代碼
作者:
何若恩
時間:
6 天前 21:05
#include<iostream>
#include<cstdlib>
using namespace std;
int add(int x, int y){
return x*x+2*x*y+y*y;
}
int main()
{
int a, b;
cin>>a>>b;
cout<<add(a,b);
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2