我正在尝试将输入添加到方法中。我认为该方法无法访问我正在调用的变量。它需要返回两个字符串中较大的一个
我尝试更改输出的内容,以及它是静态的还是无效的。我也尝试过移动变量,但没有成功。
public static void main(String[] args) {
String one = "This is the first string.";
String two = "This is the second string.";
}
public static String max(String one, String two) {
if (one.length() > two.length()) {
return one;
} else {
return two;
}
}
我希望输出为“这是第二个字符串”。因为第二个字符串比第一个字符串大。
答案 0 :(得分:0)
尝试添加Sop语句并在内部调用max方法,您将获得预期的o / p ...请检查以下代码
DataRelations