如果没有某种原因,它们Arrays.toString()将无法工作。import java.util.*这是一个简单的 java 代码,它根据用户输入的字符串的长度从数组中删除一个元素。
import java.util.*;
public class conjunction {
public static String func(String x[], int input) {
String temp[] = new String[x.length - 1];
String temp2[] = new String[x.length - 1];
for (int c = 0; c < x.length; c++) {
if (x[c].length() == input & c + 1 < x.length) {
temp2[c] = x[c + 1];
x[c + 1] = x[c];
x[c] = temp2[c];
} else if (x[c].length() != input) {
temp[c] = x[c];
}
}
return Arrays.toString(temp);
}
}
它说它无法解析符号数组。
侃侃无极
子衿沉夜
LEATH
九州编程
肥皂起泡泡
相关分类