程序的功能是将字符串s中某个指定字符删除。例如“helloWorld”删除字符'l',结果为“heoWord”。
提示 字符串结束表示为'',对于存入字符数组中的字符串可以逐个字符判断直到''结束。
注意:部分源程序给出如下。
请在花括号中填入所编写的若干语句。
#include
using namespace std;
int main()
{
char s[80];
int i,j ;
}
#include#include using namespace std; #include int main() { char s[80],n; char z[80]; int i,j=0; cin.getline(s,80,' '); cin>>n; for(i=0;i 欢迎分享,转载请注明来源:内存溢出
评论列表(0条)