본문 바로가기
카테고리 없음

백준 1427번- 소트인사이드(JAVA)

by sh.lee 2022. 3. 6.

https://www.acmicpc.net/problem/1427

 

1427번: 소트인사이드

첫째 줄에 정렬하려고 하는 수 N이 주어진다. N은 1,000,000,000보다 작거나 같은 자연수이다.

www.acmicpc.net

📌 Problem

📝 Solution

package Study0306;

import java.util.Arrays;
import java.util.Scanner;

public class sort {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		String n = sc.nextLine();
		
		char[] ch = new char[n.length()];
		for(int i=0; i<ch.length;i++) {
			ch[i]=n.charAt(i);
		}
		
		Arrays.sort(ch);
		
		for(int i=ch.length-1;i>=0;i--) {
			System.out.print(ch[i]);
		}
	}

}