NET几个重要概念

2025-04-07 14:30:47
推荐回答(1个)
回答1:

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