题解 | #记负均正#

图片整理

http://www.nowcoder.com/practice/2de4127fda5e46858aa85d254af43941


public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        if(sc.hasNext()){
            String str = sc.nextLine();
            char[] chars=str.toCharArray();
            char temp;
            for(int i=0;i<chars.length;i++){
                for(int j=i+1;j<chars.length;j++){
                    if(chars[i]>chars[j]){
                        temp=chars[j];
                        chars[j]=chars[i];
                        chars[i]=temp;
                    }
                }
            }
            System.out.print(chars);
        }
    }
}
全部评论

相关推荐

感性的干饭人在线蹲牛友:🐮 应该是在嘉定这边叭,禾赛大楼挺好看的
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务