紫竹


私信TA

用户名:urnachan

访问量:30194

签 名:

等  级
排  名 305
经  验 5575
参赛次数 0
文章发表 72
年  龄 0
在职情况 学生
学  校 合肥工业大学
专  业

  自我简介:

TA的其他文章

#include "stdafx.h"

#include "string.h"


int main()

{

char str[20] = { 0 }, ch, str2[20] = {0};

int i,len,j=0;

gets_s(str, sizeof(str));

scanf("%c", &ch);

printf("将从%s中移除字符%c\n", str, ch);

len=strlen(str);

for (i = 0; i < len; i++)

{

if (str[i] != ch)

{

str2[j++] = str[i];

}

}

puts(str2);

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »