[백준]2420번: 사파리월드

이진솔·2024년 3월 19일
0
post-thumbnail

# 문제

[입력]
첫째 줄에 두 도메인의 유명도 N과 M이 주어진다. (-2,000,000,000 ≤ N, M ≤ 2,000,000,000)

[출력]
첫째 줄에 두 유명도의 차이 (|N-M|)을 출력한다.

# 결과

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long N = sc.nextLong();
        long M = sc.nextLong();
        System.out.println(Math.abs(N-M));
    }
}

! 알아가야 할 것

  1. Math.abs() : 절대값 구하는 함수
profile
성장하기

0개의 댓글