码迷,mamicode.com
首页 > 其他好文 > 详细

字符串-01. 在字符串中查找指定字符

时间:2015-01-21 22:10:07      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

字符串-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("\n");
24     }
25     else
26         printf("Not found\n");
27     return 0;
28 }

 

字符串-01. 在字符串中查找指定字符

标签:

原文地址:http://www.cnblogs.com/yomman/p/4240064.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!