JAVA编写程序,对英文单词按照字母顺序进行排序(升序or降序)降序排序后 Peter John Bill改下面的,变成降序import java.util.ArrayList;import java.util.Collections;public class Main { /** * @param args the command
来源:学生作业帮助网 编辑:六六作业网 时间:2024/11/16 09:16:05
JAVA编写程序,对英文单词按照字母顺序进行排序(升序or降序)降序排序后 Peter John Bill改下面的,变成降序import java.util.ArrayList;import java.util.Collections;public class Main { /** * @param args the command
JAVA编写程序,对英文单词按照字母顺序进行排序(升序or降序)
降序排序后 Peter John Bill
改下面的,变成降序
import java.util.ArrayList;
import java.util.Collections;
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
String target="John Bill Peter ";
ArrayList list=new ArrayList();
for(String temp:target.split(" "))
{
list.add(temp);
}
Collections.sort(list);
for(String temp:list)
{
System.out.print(temp+" ");
}
}
}
JAVA编写程序,对英文单词按照字母顺序进行排序(升序or降序)降序排序后 Peter John Bill改下面的,变成降序import java.util.ArrayList;import java.util.Collections;public class Main { /** * @param args the command
Easy!
import java.util.ArrayList;
import java.util.Collections;
public class Main {
/**
* @param args
* the command line arguments
*/
public static void main(String[] args) {
String target = "John Bill Peter ";
ArrayList list = new ArrayList();
for (String temp : target.split(" ")) {
list.add(temp);
}
Collections.sort(list);
for(int i = list.size(); i > 0; i--){
System.out.println(list.get(i-1) + " ");
}
}
}
----------------
Peter
John
Bill