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]!=‘\0‘)
{
if (str[i]==c)
{
return 1;
}
i++;
}
return 0;
//方法3:
int i=-1;
while (str[++i]!=‘\0‘)
{
if (str[i]==c)
{
return 1;
}
}
//方法4:
while (str[++i]!=‘\0‘&&str[i]!=c);
//return str[i] == ‘\0’?0:1;
return str[i]!=‘\0‘;
}
时间: 2024-10-05 06:27:42