import java.util.Scanner; import java.util.regex.Pattern; import java.util.regex.Matcher; public class ReplacingNumbers { public static void main(String[] args){ char[] Disassembly = Processing(Input()); String Result = String.valueOf(Disassembly); System.out.println(Result); } //数値を入力し条件を判定して1文字ずつ配列に格納して返却するメソッド public static char[] Input(){ Scanner scanner = new Scanner(System.in); char[] Disassembly = null; try{ //数値の入力 String N = scanner.nextLine(); //数列が1~9で構成されているかチェック Pattern pattern = Pattern.compile(".*[^1-9].*"); Matcher matcher = pattern.matcher(N); if(matcher.find()){ System.out.println("1~9の数字のみで入力してください"); System.exit(0); } //数列の長さが2以上9以下かチェック if(N.length() < 2 || N.length() > 9){ System.out.println("2文字以上9文字以下で入力してください"); System.exit(0); } //String型の数列をchar配列で1文字ずつ格納する Disassembly = N.toCharArray(); }catch(Exception E){ System.out.println("想定外のエラーです"); System.exit(0); } return Disassembly; } public static char[] Processing(char[] Disassembly){ //何番目に最も大きい数があるかを記憶する変数を定義 int Count = 0; //左から順番に固定してその値より大きな値が右側にあるか調べるループ for(int i = 0 ; i < Disassembly.length ; i++){ Count = i; for(int j = i + 1 ; j