为什么我运行程序的时候那个黑色窗口不弹出来啊

2024-11-07 09:28:01
推荐回答(1个)
回答(1):

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