返回列表 發帖

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

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int a(int b){
  4.     if(b<2){
  5.         return 1;
  6.     }else{
  7.         return b*a(b-1);
  8.     }
  9. }
  10. int main()
  11. {
  12.     int c;
  13.     cin>>c;
  14.     cout<<a(c);
  15.     return 0;   
  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<sstream>
  4. #include<algorithm>
  5. using namespace std;
  6. string str="123 42 13 56 8 67 7";
  7. int data[50];
  8. stringstream ss;
  9. int main()
  10. {
  11.     //cout<<str<<endl;
  12.     replace(str.begin(),str.end(),' ',' ');
  13.     //cout<<str<<endl;
  14.     ss<<str;
  15.     int n, index=0;
  16.     while(ss>>n)
  17.     {
  18.         data[index]=n;
  19.         index++;
  20.     }
  21.     for(int i=0; i<index; i++)
  22.         cout<<data[i]<<endl;
  23.     return 0;
  24. }
複製代碼

TOP

返回列表