标签:style blog http color os c++
1 #include<iostream> 2 #include<string> 3 using namespace std; 4 int main(){ 5 string s; 6 char c; 7 getline(cin,s); 8 cin>>c; 9 if(s.find(c)!=string::npos) 10 cout<<s.substr(s.find(c))<<endl; 11 else 12 cout<<"Not found"<<endl; 13 return 0; 14 }
参考:
字符串-01. 在字符串中查找指定字符(15),布布扣,bubuko.com
标签:style blog http color os c++
原文地址:http://www.cnblogs.com/gnodidux/p/3819987.html