http://ac.jobdu.com/problem.php?pid=1049
題目描述: - 輸入字元串s和字元c,要求去掉s中所有的c字元,并輸出結果。
輸入: - 測試資料有多組,每組輸入字元串s和字元c。
輸出: - 對于每組輸入,輸出去除c字元後的結果。
樣例輸入: -
heallo
a
樣例輸出: -
hello
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while (sc.hasNext()) { String str = sc.nextLine(); String s = sc.nextLine(); char c = s.charAt( ); char [] a = str.toCharArray(); for ( int i = ; i < str.length(); i++) { if (a[i] == c) { a[i] = '0' ; } } for ( int i = ; i < a.length; i++){ if (a[i] != '0' ) System.out.print(a[i]); } a= null ; System.out.println(); } } } |