gpt4 book ai didi

java - getMax 方法获取更大的数字

转载 作者:行者123 更新时间:2023-12-02 14:06:05 26 4
gpt4 key购买 nike

我是 Java 菜鸟,我遇到了一个问题。

所以作业是这样的

There is one method required: getMax, which takes two integer variables as input, returns >the bigger one of the two. Your main method must look like the following (except the comment.

main( String[] args)
{
int num1, num2;
num1 = Integer.parseInt(args[0]);
num2 = Integer.parseInt(args[1]);
System.out.println(“the bigger value of the two is : “ + getMax(num1, num2));
}

你的程序可能会像这样工作:

java 分配5 23 67

两者较大的值为67

经过一番努力,这是我编写的小程序。

import java.util.Scanner;

//use getMax to takes two numbers and returns bigger of the two

public class assignment5 {
private static void getMax(int a, int b ){
Scanner kevin = new Scanner(System.in);

System.out.println("Enter First Number:");
a = kevin.nextInt();
System.out.println("Enter Second Number:");
b = kevin.nextInt();

getMax(a, b); if (a > b) {
System.out.println(a + " is bigger"); }
else {
System.out.println(b + " is bigger");
}

}

}

但这在某种程度上与实际分配有很大不同。我觉得有点傻。有人可以帮我解决这个问题吗?

最佳答案

你走错了方向。

您试图更改两个 int 的读取机制,而这部分已给出。

当您查看练习源时,您会发现代码调用了“getMax(num1, num2)”,但该函数并未实现。因此,您必须实现具有此签名的方法:

public int getMax(int num1, int num2) {
// your code here
}

关于java - getMax 方法获取更大的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6931397/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com