public class Main
{
public static void main(String[] args)
{
String[] find2 = {"cool","NOT","NOT,"Cool"};
String[] nofind = {"Fly","poke","ok";
System.out.println(Test.out(find);
System.out.println(Test.out(nofind));
}
}
+
public class Test
{
public static boolean Out(String[] input) {
for (int i = 0; i < input.length; i++) {
for (int j = 0; j < input.length; j++) {
if (input[i].equals(input[j]) && i != j) {
return true;
}
}
}
return false;
}
我已经设法运行一个代码,告诉我如果字符串数组中有重复的一系列单词,它是真还是假,但是,如果没有一个循环构造也能找到大写和小写的重复,我怎么能做到这一点?
守着星空守着你
莫回无
相关分类