字符串-01. 在字符串中查找指定字符(15)
时间限制
400 ms
内存限制
65536 kB
代码长度限制
8000 B
判题程序
Standard
作者
白洪欢(浙江大学)
输入一个字符串S,再输入一个字符c,要求在字符串S中查找字符c。如果找不到则输出“Not found”;若找到则输出字符串S中从c开始的所有字符。
输入格式:
输入在第1行中给出一个不超过80个字符长度的、以回车结束的非空字符串;在第2行中给出一个字符。
输出格式:
在一行中按照题目要求输出结果。
输入样例1:It is a black box b输出样例1:
black box输入样例2:
It is a black box B输出样例2:
Not found
1 #include<stdio.h> 2 #include<math.h> 3 #include<stdlib.h> 4 #include<string.h> 5 int main() 6 { 7 char str[100], c; 8 gets(str); 9 c = getchar(); 10 int i, flag = 0; 11 for(i = 0; i < strlen(str); i++) 12 { 13 if(str[i] == c) 14 { 15 flag = 1; 16 break; 17 } 18 } 19 if(flag) 20 { 21 for(; i < strlen(str); i++) 22 printf("%c", str[i]); 23 printf(" "); 24 } 25 else 26 printf("Not found "); 27 return 0; 28 }