解题思路:
注意事项:
参考代码:
public class Test {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
String s1 = scanner.nextLine();
String s2 = scanner.nextLine();
System.out.println(removeSpace(s1).equals(removeSpace(s2)) ? "YES" : "NO");
}
public static String removeSpace(String s) {
s = s.toLowerCase();//变为小写
char[] chars = new char[s.length()];
int i = 0, index = 0;
while (index < s.length()) {
if (s.charAt(index) != ' ') {
chars[i++] = s.charAt(index);
}
index++;
}
String str = new String(chars);
return str.substring(0, i);
}
}
0.0分
0 人评分
拆分位数 (C++代码)用char简单粗暴,嗯浏览:1122 |
C语言考试练习题_保留字母 (C语言代码)浏览:733 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:668 |
C语言程序设计教程(第三版)课后习题11.8 (C语言代码)浏览:640 |
C二级辅导-计负均正 (C语言代码)浏览:698 |
P1002 (C语言代码)浏览:1019 |
c primer plus 第十二章 12.1小节浏览:400 |
printf基础练习2 (C语言代码)浏览:955 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:633 |
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:1314 |