gpt4 book ai didi

java - 创建一个方法来确定两个数字中较大的一个

转载 作者:太空宇宙 更新时间:2023-11-04 08:11:34 26 4
gpt4 key购买 nike

在本作业中,我必须使用命令行参数编写一个 Java 程序。需要一种方法:getMax,它将两个整型变量作为输入并返回两者中较大的一个。您的主要方法必须如下所示(注释除外)。

  … 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));
}

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

javaAssign5 23 67

两者较大的值为67

到目前为止,这就是我所拥有的;这是正确的吗?

public class Assign5{
public static void 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));
}
public static int getMax(int num1, int num2) {
int result;
if (num1 > num2)
result = num1;
else
result = num2;

return result;
}
}

最佳答案

您将方法与类混淆了。您应该编写的代码如下所示

/**
* This this the class
*/
class NameOfSomeAssignment {

/**
* This is a method
*/
public int getMax() {
// Implement me
}

/**
* This is a 'special' method, it launches your application
*/
public static void main(String... args) {
// Do something
}
}

关于java - 创建一个方法来确定两个数字中较大的一个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11144377/

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