반응형

https://www.codetree.ai/missions/4/problems/from-high-to-low/description

 

코드트리 | 코딩테스트 준비를 위한 알고리즘 정석

국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요.

www.codetree.ai

 

코드

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int a = sc.nextInt();
        int b = sc.nextInt();

        for (int i = Math.max(a, b); i >= Math.min(a, b); i--) {
            System.out.print(i + " ");
        }

        sc.close();
    }
}

 

반응형

+ Recent posts