1204 尋找子串位置string使用

2021-07-28 08:48:12 字數 383 閱讀 9776

題目描述 description

給出字串a和字串b,保證b是a的乙個子串,請你輸出b在a中第一次出現的位置。

輸入描述 input description

僅一行包含兩個字串a和b

輸出描述 output description

僅一行乙個整數

樣例輸入 sample input

abcd bc

樣例輸出 sample output 2

#include#include#includeusing namespace std;

int main(){

string a,b;

cin>>a>>b;

int ans=a.find(b);

cout<

1204 尋找子串位置 解題報告

題目描寫敘述 description 給出字串a和字串b,保證b是a的乙個子串。請你輸出b在a中第一次出現的位置。輸入描寫敘述 input description 僅一行包括兩個字串a和b 輸出描寫敘述 output description 僅一行乙個整數 例子輸入 sample input abc...

codevs 1204 尋找子串位置

題目描述 description 給出字串a和字串b,保證b是a的乙個子串,請你輸出b在a中第一次出現的位置。輸入描述 input description 僅一行包含兩個字串a和b 輸出描述 output description 僅一行乙個整數 樣例輸入 sample input abcd bc 樣...

尋找子串位置 codevs 1204

題目描述 description 給出字串a和字串b,保證b是a的乙個子串,請你輸出b在a中第一次出現的位置。輸入描述 input description 僅一行包含兩個字串a和b 輸出描述 output description 僅一行乙個整數 樣例輸入 sample input abcd bc 樣...