find查找string未找到返回值-1
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define endl '\n'
signed main()
{
std::ios::sync_with_stdio(false);cin.tie(0); cout.tie(0);
string a,b;
a="nihao";
int t=a.find("c");
cout<<t;
return 0;
}
using namespace std;
#define int long long
#define endl '\n'
signed main()
{
std::ios::sync_with_stdio(false);cin.tie(0); cout.tie(0);
string a,b;
a="nihao";
int t=a.find("c");
cout<<t;
return 0;
}
全部评论
相关推荐

点赞 评论 收藏
分享