Board logo

標題: 2024/11/29 課堂重點(若恩) [打印本頁]

作者: 郭竑志    時間: 6 天前 16:39     標題: 2024/11/29 課堂重點(若恩)

本帖最後由 郭竑志 於 2024-11-29 21:18 編輯

[課堂重點]
字串分割 (一)
find() 與 rfind() 函式
遞迴演算法
遞迴函式 (一)
遞迴函式 (三)
[今日作業]
stringstream 字串串流 (三)
遞迴函式 (二)
作者: 何若恩    時間: 6 天前 20:28

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string str="123.45.6789";
  7.     str+=".";
  8.     string res[50];
  9.     int index=0;
  10.     string tmp="";
  11.     for(int i=0; i<str.size(); i++)
  12.     {
  13.          if(str[i]=='.')
  14.          {
  15.              res[index]=tmp;
  16.              tmp="";
  17.              index++;
  18.          }else
  19.          {
  20.              tmp+=str[i];
  21.          }
  22.     }
  23.     for(int i=0; res[i]!=""; i++)
  24.         cout<<res[i]<<endl;
  25.     system("pause");
  26.     return 0;   
  27. }
複製代碼

作者: 何若恩    時間: 6 天前 20:47

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     string str="Hello world!";
  7.     cout<<str<<endl;
  8.     cout<<"字元'o'的索引位置(由前往後找):"<<str.find('o')<<endl;
  9.     cout<<"字元'o'的索引位置(由後往前找):"<<str.rfind('o')<<endl;
  10.     cout<<"字串'llo'的索引位置(由前往後找):"<<str.find('llo')<<endl;
  11.     cout<<"字元 'l' 的索引位置 (由前往後自第4個位置開始查找): "<<str.find('l',4)<<endl;
  12.     int res=str.find('a');
  13.     cout<<"字元 'a' 的索引位置 (由前往後查找): "<<res<<endl;  
  14.     return 0;   
  15. }
複製代碼

作者: 郭竑志    時間: 6 天前 21:02

回復 1# 郭竑志
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int ADD(int x, int y)
  5. {
  6.     return x+y;
  7. }

  8. int main()
  9. {
  10.     int a, b;
  11.     cin>>a>>b;
  12.     cout<<ADD(a,b);
  13. }
複製代碼

作者: 何若恩    時間: 6 天前 21:05

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int add(int x, int y){
  5.     return x*x+2*x*y+y*y;
  6. }
  7. int main()
  8. {
  9.     int a, b;
  10.     cin>>a>>b;
  11.     cout<<add(a,b);
  12.     return 0;   
  13. }
複製代碼





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