发布网友
共2个回答
热心网友
int inthestr(char *s,char ch)
{
while(*s!='\0'){
if(*s==ch)
return 1;
s++;
}
return 0;
}
热心网友
网页链接 阿里云大学的课程 你可以看一下 望采纳