1204 尋找子串位置 解題報告

2021-09-22 12:12:53 字數 739 閱讀 5640

題目描寫敘述 description

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

輸入描寫敘述 input description

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

輸出描寫敘述 output description

僅一行乙個整數

例子輸入 sample input

abcd bc

例子輸出 sample output 2

資料範圍及提示 data size & hint

字串的長度均不超過100

pascal使用者請注意:兩個字串之間可能包括多個空格

#include // 尋找子串位置

inline int findsubstrlocation(int *str,int *substr)else

if (*q == '\0')

}p++;

q = substr;

}return null;

}int main()

str[i] = '\0';

i = 0;

while ((temp = getchar()) != '\n')

}substr[i] = '\0';

printf("%d\n",findsubstrlocation(str,substr));

return 0;

}

1204 尋找子串位置string使用

題目描述 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 樣...

尋找子串位置 codevs 1204

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