摘要:
1 关于验证字符串的问题: 2 阅读全文
摘要:
/* 在字符串中删除特定的字符 输入两个字符串,从第一字符串中删除第二个字符串中所有的字符。 例如,输入”They are students.”和”aeiou”,则删除之后的第一个字符串变成”Thy r stdnts.”。 */ public class DeleteChar { public static void main(String[] args) { Scanner scane... 阅读全文