题目内容
【程序改错】题目:函数 fun 的功能是:判断字符ch是否与str所指串中的某个字符相同; 若相同,什么也不做,若不同,则将其插在串的最后。要求:请将程序在VC++6.0等环境中编辑运行,并将填空后的程序及运行结果截图上传。--------------------------------------------------------------------------------------------------------------------------------注意:不可以增加或删除程序行,也不可以更改程序的结构。--------------------------------------------------------------------------------------------------------------------------------#include #include #include /**********FOUND**********/void fun(char str, char ch ){while ( *str && *str != ch ) str++;/**********FOUND**********/if ( *str == ch ){str [ 0 ] = ch;/**********FOUND**********/str[1] = '0';}}main( ){char s[81], c ;clrscr();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);}
查看答案
搜索结果不匹配?点我反馈
更多问题