https://www.acmicpc.net/problem/2420
아이디어:
절댓값을 활용할 수 있는지 묻는 문제
1. 정수 범위가 넓어 long long 자료형 사용
2. 정수 절댓값을 위해 cstdlib 라이브러리 > abs 함수 사용
// 2420
#include <iostream>
#include <cstdlib>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
long long n, m;
cin >> n >> m;
cout << abs(n - m);
return 0;
}
'algorithm' 카테고리의 다른 글
백준 10872번 팩토리얼 (0) | 2024.10.27 |
---|---|
백준 2741번 N 찍기 (1) | 2024.10.27 |
백준 7287번 등록 (0) | 2024.10.27 |
백준 10699번 오늘 날짜 (0) | 2024.10.27 |
백준 1735번 분수 합 (0) | 2024.10.20 |