标签:style color io os ar for div sp 代码
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);
标签:style color io os ar for div sp 代码
原文地址:http://www.cnblogs.com/Alling/p/3971402.html