int char_contains(char str[],char c)
{
//方法1:
int len=strlen(str);
for (int i=0; i<len; i++)
{
if (str[i]==c)
{
return 1;
}
}
return 0;
//方法2:
int i=0;
while (str[i]!=' ')
{
if (str[i]==c)
{
return 1;
}
i++;
}
return 0;
//方法3:
int i=-1;
while (str[++i]!=' ')
{
if (str[i]==c)
{
return 1;
}
}
//方法4:
while (str[++i]!=' '&&str[i]!=c);
//return str[i] == ‘ ’?0:1;
return str[i]!=‘ ';
}
}