gpt4 book ai didi

java - 如何在 Java 中使用排序算法?

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:10:43 24 4
gpt4 key购买 nike

我的任务是询问用户他想要输入的字符串数量。然后我会提示他调整琴弦。然后我应该按字母顺序打印刺痛。我完成了大部分作业,只需要一个排序算法(如冒泡排序)来完成它。这是我的代码。

import java.io.*; 
public class sorting
{


private static BufferedReader stdin=new BufferedReader(new InputStreamReader( System.in));

public static void main(String[] arguments) throws IOException
{
System.out.println("How many strings would you like to enter?");
int stringCount = Integer.parseInt(stdin.readLine());
String[] stringInput = new String[stringCount];
for(int i = 0; i < stringCount; i++)
{
System.out.print("Could you enter the strings here: ");
stringInput[i] = stdin.readLine();
}
//Now how do i use a sorting algorithm?
}
}

最佳答案

关于java - 如何在 Java 中使用排序算法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6905947/

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