编写函数any(s1,s2),把字符串中s2中的任一在字符串s1中第一次出现的位置作为结果返回,若是不包含就返回-1

#include<stdio.h>
int any(char *s1,char *s2);
int main()
{
	char s1[20],s2[20];
	printf("请输入字符串s1:");
	gets(s1);
	printf("请输入字符串s2:");
	gets(s2);
	int pos;
	pos=any(s1,s2);
	printf("第一次出现的位置是:%d\n",pos);
	return 0;
}
int any(char *s1,char *s2)
{
	int pos=-1;
	int i=0;
	char *s;
	while(*s1!='\0')
	{
		s=s2;
		while(*s!='\0')
		{
			if(*s1==*s)
			{
				pos=i;
				return pos;
			}
			s++;
		}
		s1++;
		i++;
	}
	return pos;
}

上一篇:CUDA学习-计算实际线程ID


下一篇:Qt QString隐式共享