首页 > 代码库 > Wikioi 1204寻找子串位置(strstr()函数)

Wikioi 1204寻找子串位置(strstr()函数)

1204 寻找子串位置

题目描述 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用户请注意:两个字符串之间可能包含多个空格

 

 

  Pass Code:

  

  

#include <stdio.h>#include <string.h>int main(){	char a[100], b[100], *ptr1, *ptr2;	scanf("%s%s", a, b);	ptr1 = &a;	ptr2 = strstr(a, b);	printf("%d", (ptr2 - ptr1) + 1);	return 0;}