1. 程式人生 > >演算法筆記 — 字串去特定字元

演算法筆記 — 字串去特定字元

 

題目連結:http://www.codeup.cn/problem.php?cid=100000580&pid=4

題目描述

輸入字串s和字元c,要求去掉s中所有的c字元,並輸出結果。

輸入

測試資料有多組,每組輸入字串s和字元c。

輸出

對於每組輸入,輸出去除c字元後的結果。

樣例輸入

goaod
a

樣例輸出

good
#include<iostream>
#include<cstring>
using namespace std;
int main(){
	char s[1111];
	char c;
	while(gets(s)){
		//cin>>c;
		scanf("%c",&c);
		for(int i=0;i<strlen(s);i++){
			if(s[i]==c){
				continue;
			}else{
				cout<<s[i];
			}
		}
		cout<<endl;
		getchar();
	}
	return 0;
}