import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); String s=sc.nextLine().toLowerCase().trim(); while(sc.hasNext()){ String str=sc.nextLine(); if(str.toLowerCase().contains(s)){ int len=s.length(); for (int i = 0; i < str.length()-len+1; i++) { String s2=str.substring(i,i+len); if(s2.toLowerCase().equals(s))str=str.replace(s2, ""); } } str=str.replace(" ", ""); System.out.println(str); } } }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题8.3 (C语言代码)浏览:624 |
C语言程序设计教程(第三版)课后习题6.6 (C++代码)浏览:649 |
C语言考试练习题_保留字母 (C语言代码)浏览:743 |
1011题解浏览:819 |
Pascal三角 (C语言代码)浏览:707 |
字符串比较 (C语言代码)浏览:770 |
简单的a+b (C语言代码)浏览:617 |
10月月赛题解浏览:554 |
小O的乘积 (C++代码)浏览:545 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:1207 |