gpt4 book ai didi

java - 排序三个整数

转载 作者:行者123 更新时间:2023-11-30 09:01:16 25 4
gpt4 key购买 nike

首先,是的,我正在做一个编程作业的介绍,但是我花了一整天的时间试图解决这个问题,但没有取得一些进展,但没有成功。

练习是创建一个方法,将 3 个整数从小到大排序。我们不鼓励使用数组,但在这一点上我无法弄清楚如果没有数组的帮助我将如何实现这一点。

我一开始只是想弄清楚如何对 3 个整数进行“排序”,这就是我想出的:

public class SortInteger {
public static void main(String[]args) {
int a = Integer.parseInt(args[0]);
int b = Integer.parseInt(args[1]);
int c = Integer.parseInt(args[2]);
int n1, n2, n3 = 0;


if (a < b && a < c) { n1 = a; }
else if (b < a && b < c) { n1 = b; }
else { n1 = c; }

if (a > b && a > c) { n3 = a; }
else if (b > a && b > c) { n3 = b; }
else { n3 = c; }

if (n1 < a && a < n3) { n2 = a; }
else if (n1 < b && b < n3) { n2 = b; }
else {n2 = c;}

System.out.println( n1 + " " + n2 + " " + n3);
}
}

我觉得我可以很容易地减少 if 语句的数量并简化上面代码中的很多行,但是我想等到成功后再开始清理程序。此外,该代码有效,但目标是将其编写为静态方法。所以在走到这一步之后,我开始尝试将它转换为静态方法并且已经走到了这一步:

public class SortInteger2 {
public static int sort(int a, int b, int c) {
int []s = new int [3];

if (a < b && a < c) { s[0] = a; }
else if (b < a && b < c) { s[0] = b; }
else {s[0] = c;}

if (a > b && a > c) { s[2] = a; }
else if (b > a && b > c) { s[2] = b; }
else {s[2] = c;}

if (s[0] < a && a < s[2]) { s[1] = a; }
else if (s[0] < b && b < s[2]) { s[1] = b; }
else {s[1] = c;}

return s[]; //I dont know how to return an array, this didnt work for me
}

public static void main(String[]args) {
int A = Integer.parseInt(args[0]);
int B = Integer.parseInt(args[1]);
int C = Integer.parseInt(args[2]);

int []S = new int [3];
S = sort(A,B,C);
System.out.println(S[0] + " " + S[1] + " " + S[2]);
}
}

我知道我只能返回单个对象,这就是为什么我选择使用数组来存储三个整数,然后简单地返回单个对象即数组。但是,当我尝试时,编译器仍然对我大喊大叫。我在这里错过了什么?我觉得它很明显,但是当我一遍又一遍地检查它时,有些东西并没有发出咔哒声。如果我能被引导到正确的方向,我将非常感激!

最佳答案

“我觉得我可以很容易地减少 if 语句的数量并简化上面代码中的很多行,”

您可以继续使用 a、b、c 而不是创建新变量,并根据它们的比较来交换它们,但除此之外,没有太多减少。

“此外,该代码有效,但目标是将其编写为静态方法。”

为什么不这样做呢?

public static void sort(int a, int b, int c) {
...

System.out.println( n1 + " " + n2 + " " + n3);
}

public static void main(String[] args) {
sort(2, 5, 9);
}

如果您仍然打算使用数组,请将 sort 的返回值更改为 int[]。然后,将 return s[] 行更改为 return s,表示您正在返回数组。

关于java - 排序三个整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26446465/

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