返回列表 發帖

2024/11/29 課堂重點(若恩)

  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. }
複製代碼

TOP

  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. }
複製代碼

TOP

回復 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. }
複製代碼

TOP

  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. }
複製代碼

TOP

返回列表