gpt4 book ai didi

java - 按字母顺序列出字符串数组

转载 作者:IT老高 更新时间:2023-10-28 20:45:48 27 4
gpt4 key购买 nike

我有一个程序让用户输入姓名列表。我有一个 switch case 去一个函数,我想让名字按字母顺序打印出来。

public static void orderedGuests(String[] hotel)
{
//??
}

我都试过了

Arrays.sort(hotel);
System.out.println(Arrays.toString(hotel));

java.util.Collections.sort(hotel);

最佳答案

奇怪,你的代码似乎对我有用:

import java.util.Arrays;

public class Test
{
public static void main(String[] args)
{
// args is the list of guests
Arrays.sort(args);
for(int i = 0; i < args.length; i++)
System.out.println(args[i]);
}
}

我使用“java Test Bobby Joe Angel”运行了该代码,输出如下:

$ java Test Bobby Joe Angel
Angel
Bobby
Joe

关于java - 按字母顺序列出字符串数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14945656/

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