今天考二级上机 这道题我想了很久 但还是想不通~~请大家帮我想想~~一下是改正后的源程序。
给定程序MODI1.C中函数fun的功能是:判断ch中的字符是否与str所指串中的某个字符相同;若相同,什么也不做,若不同,则将其插在串的最后。请改正程序中的错误,使它能...
给定程序MODI1.C中函数 fun 的功能是:判断ch中的字符是否与str所指串中的某个字符相同; 若相同,什么也不做,若不同,则将其插在串的最后。
请改正程序中的错误,使它能进行正确的操作。
注意:不要改动 main 函数,不得增行或删行,也不得更改程序的结构!
#include <stdio.h>
#include <string.h>
/**********found**********/
void fun(char *s,char c)
{ while ( *str && *str != ch ) str++;
/**********found**********/
if(*s=='\0')
{ str [ 0 ] = ch;
/**********found**********/
s[1]='\0' ;
}
main( )
{ char s[81], c ;
printf( "\nPlease enter a string:\n" ); gets ( s );
printf ("\n Please enter the character to search : " );
c = getchar();
fun(s, c) ;
printf( "\nThe result is %s\n", s);
}
我想问的是当程序执行到if(*s=='\0')
后 s的指针指的地方时那个地方 为什么 后面还有s[0]和s[1]的赋值语句这样的话 不是把s前面所指过的地址覆盖了吗?怎么还会变成插到串的后面呢? 展开
请改正程序中的错误,使它能进行正确的操作。
注意:不要改动 main 函数,不得增行或删行,也不得更改程序的结构!
#include <stdio.h>
#include <string.h>
/**********found**********/
void fun(char *s,char c)
{ while ( *str && *str != ch ) str++;
/**********found**********/
if(*s=='\0')
{ str [ 0 ] = ch;
/**********found**********/
s[1]='\0' ;
}
main( )
{ char s[81], c ;
printf( "\nPlease enter a string:\n" ); gets ( s );
printf ("\n Please enter the character to search : " );
c = getchar();
fun(s, c) ;
printf( "\nThe result is %s\n", s);
}
我想问的是当程序执行到if(*s=='\0')
后 s的指针指的地方时那个地方 为什么 后面还有s[0]和s[1]的赋值语句这样的话 不是把s前面所指过的地址覆盖了吗?怎么还会变成插到串的后面呢? 展开
3个回答
展开全部
我只能说你越改越错了
正确的是:
#include <stdio.h>
#include <string.h>
/**********found**********/
void fun(char *str, char ch )
{ while ( *str && *str != ch ) str++; //判断str中没有和ch相等的,当*str指向'\0'的时侯循环就 结束了,然后指针就停止在这个位置
/**********found**********/
if ( *str != ch ) // str中没有相等的时候就要在字符串的最后插入,这里的str[0]你可以理解
{ str [ 0 ] = ch; 成 *(str+0) 本来经过上面的操作指针的指向就已经在最后了,所以str[0]相
/**********found**********/ 于是在最后插入
str[1] = 0;
}
}
main( )
{ char s[81], c ;
printf( "\nPlease enter a string:\n" ); gets ( s );
printf ("\n Please enter the character to search : " );
c = getchar();
fun(s, c) ;
printf( "\nThe result is %s\n", s);
}
正确的是:
#include <stdio.h>
#include <string.h>
/**********found**********/
void fun(char *str, char ch )
{ while ( *str && *str != ch ) str++; //判断str中没有和ch相等的,当*str指向'\0'的时侯循环就 结束了,然后指针就停止在这个位置
/**********found**********/
if ( *str != ch ) // str中没有相等的时候就要在字符串的最后插入,这里的str[0]你可以理解
{ str [ 0 ] = ch; 成 *(str+0) 本来经过上面的操作指针的指向就已经在最后了,所以str[0]相
/**********found**********/ 于是在最后插入
str[1] = 0;
}
}
main( )
{ char s[81], c ;
printf( "\nPlease enter a string:\n" ); gets ( s );
printf ("\n Please enter the character to search : " );
c = getchar();
fun(s, c) ;
printf( "\nThe result is %s\n", s);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询