码迷,mamicode.com
首页 > 编程语言 > 详细

ASCII码排序

时间:2016-08-20 21:51:05      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:

技术分享
-------------------------------------------------------------

AC代码:

 1 import java.util.Arrays;
 2 import java.util.Scanner;
 3 
 4 public class Main {
 5 
 6     public static void main(String[] args) {
 7         
 8         Scanner sc=new Scanner(System.in);
 9         
10         int n=Integer.parseInt(sc.nextLine());
11         
12         while(n-->0){
13             
14             String s=sc.nextLine();
15 
16             char[] book=s.toCharArray();
17             Arrays.sort(book);
18             
19             for(int i=0;i<book.length;i++){
20                 System.out.printf("%c ",book[i]);
21             }
22             System.out.println();
23         }
24         
25     }
26     
27 }

 

题目来源:http://acm.nyist.net/JudgeOnline/problem.php?pid=4

ASCII码排序

标签:

原文地址:http://www.cnblogs.com/cc11001100/p/5791214.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!