my1456436220 发表于 2021-11-21 12:13:39

输入一串字符以及一个字符,找到这个字符在字符串中出现的第一次的位置和最后一次...

#include<iostream>
#include<cstring>
using namespace std;
int main(){
strchr(str,ch);
string str ="abcdefdef"
int index=strchar(str,"d");
   cout<<index<<endl;//index=3
return 0;
}

my1456436220 发表于 2021-11-21 12:14:24

{:10_266:}

jackz007 发表于 2021-11-21 13:49:51

#include<iostream>
#include<cstring>
using namespace std;
int main(void)
{
      int n , index1 , index2                                                    ;
      string str = "abcdefdef"                                                   ;
      for(n = 0 ; str ; n ++)                                                 ;
      for(index1 = 0 ; index1 < n ; index1 ++) if(str == 'd') break      ;
      for(index2 = n - 1 ; index2 >= 0 ; index2 --) if(str == 'd') break ;
      cout << index1 << " , " << index2 << endl                                  ;
      return 0                                                                   ;
}
      编译、运行实况:
D:\00.Excise\C>g++ -o x x.cpp

D:\00.Excise\C>x
3 , 6

D:\00.Excise\C>
页: [1]
查看完整版本: 输入一串字符以及一个字符,找到这个字符在字符串中出现的第一次的位置和最后一次...