效果包你满意, 亲~~~
成都创新互联公司专注于企业成都营销网站建设、网站重做改版、夏津网站定制设计、自适应品牌网站建设、H5技术、成都做商城网站、集团公司官网建设、成都外贸网站制作、高端网站制作、响应式网页设计等建站业务,价格优惠性价比高,为夏津等各大城市提供网站开发制作服务。
#include stdio.h
int length(char *s);
int main(void)
{
int len;
char str[80];
char ch;
do
{
printf("Enter string(whthin 80 characters): ");
gets(str);
len = length(str);
printf("输入字符串的长度为:%d\n", len);
printf("\nDo you want continue y/n: \n");
scanf(" %c", ch);
while ('\n' != getchar())
{
continue;
}
}while('y' == ch || 'Y' == ch);
printf("Bye\n");
return 0;
}
int length(char *s)
{
int i=0;
int count = 0;//计数
while ('\0' != s[i])
{
count++;
i++;
}
return count;
}
测试结果:
Enter string(whthin 80 characters): fjalsjdlafjfalj ajsdf
输入字符串的长度为:21
Do you want continue y/n:
y
Enter string(whthin 80 characters): jlsdjflsjafjw w jljsl
输入字符串的长度为:21
Do you want continue y/n:
y
Enter string(whthin 80 characters): jsljfljxooa sjldj
输入字符串的长度为:17
Do you want continue y/n:
n
Bye
Press any key to continue
没有,但是有strlen,可以获取字符串的长度,要使用此函数,需要包含string.h
largest函数的作用是寻找并返回数组中的最大值。
从函数声明处可看出,largest函数包含两个参数:整形数组 int num_array[]、整型 length(圈1)。main函数中调用largest函数时,已传了两个参数:其一为数组array(定义的全局变量)、其二为MAX(定义的常量)。所以largest函数中length的值即为传来的MAX常量值,即10。
int length(char*s){
int i;
for(i=0;s[i]!='\0';i++); // 注意 不等号
return i;
}
void convert(char*s){
int i,j;
char t;
i=length(s); // 调用长度
for(j=0;ji/2;j++){
t=*(s+j);
*(s+j) = *(s+i-j-1);
*(s+i-j-1)=t;}
}