在字符串中查找指定字符(15)

#include<stdio.h>
int main()
{
	char e,str[80];
	int i;
	while(gets(str)!=NULL)
	{
		e=getchar();
		if(e=='\n') scanf("%c",&e);
		i=0;
		while(str[i]!='\0'){
			if(str[i]==e) break;
			i++;
		}
		if(str[i]=='\0') printf("Not found");
		while(str[i]!='\0') printf("%c",str[i++]);
		printf("\n");
		e=getchar();
	}
	return 0;
}

posted on 2015-01-25 13:39  赛亚人  阅读(162)  评论(0编辑  收藏  举报