字符串删除字符问题

程序的功能是将字符串s中某个指定字符删除。例如“helloWorld”删除字符'l',结果为“heoWord”。
提示 字符串结束表示为'\0',对于存入字符数组中的字符串可以逐个字符判断直到'\0'结束。
注意:部分源程序给出如下。
请在花括号中填入所编写的若干语句。 
#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

你可能感兴趣的:(源程序,c语言,1024程序员节,c++)