Tsukinai的第五十八个程序(检测某字符是否在该字符串中)

Tsukinai的第五十八个程序

请按给定的程序框架,将is_within()函数补充完整。is_within()函数有两个参数,一个是字符,另一个是字符指针。
其功能是如果字符在字符串中,返回值为1;如果字符不在字符串中,返回值为0。

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int is_within(char *p, char s);

int main()
{
    char a[80], s;
    int flag;

    gets(a);
    s = getchar();

    flag = is_within(a, s);

    if (flag)
        printf("Read the characters in a string.");
    else
        printf("Read the characters not in the string.");
    system("pause");
    return 0;
}
int is_within(char *p, char s)
{
    int len, i;
    len = strlen(p);
    for (i = 0; i < len; i++)
    {
        if (*(p + i) == s)
        {
            return 1;
        }
    }
    return 0;
}
  • 2
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
08-14 660

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值