有没有c#大神指点迷津

2024-11-24 07:40:37
推荐回答(1个)
回答1:

int inthestr(char *s,char ch)
{
while(*s!='\0'){
if(*s==ch)
return 1;
s++;
}
return 0;
}