每日代码系列(7)

 1 import java.util.*;
 2 public class O3_5 {
 3   public static void main(String[] args) {
 4     String str,newStr=" ";
 5     char DeleteChar='a',temp;
 6     Scanner buf=new Scanner(System.in);
 7     System.out.print("输入字符串:");
 8     str=buf.nextLine();
 9     for(int i=0;i<str.length();i++) {
10       temp=str.charAt(i);
11       if(temp!=DeleteChar) {
12         newStr=newStr+temp;
13       }
14     }
15     System.out.print("新的字符串是:"+newStr);
16   }
17 }

最近没怎么好好学,还是几天前的库存,抱歉,明天一定更新质量高一点的代码。

posted @ 2020-12-02 13:23  李家宇  阅读(74)  评论(0编辑  收藏  举报