输入一串字符以及一个字符,找到这个字符在字符串中出现的第一次的位置和最后一次...
#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;
}
{:10_266:} #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]