Post

[BaekJoon] 20492번 - 세금 [Java][C++]

[BaekJoon] 20492번 - 세금 [Java][C++]

문제 링크


1. 문제 풀이


주어진 조건에 맞춰 금액을 출력하는 문제로 정수간 나눗셈에서 나머지가 버림 처리될 수 있는 점과 오버플로우만 주의해서 계산하면 된다.


2. 코드


1. 풀이 [Java]

1
2
3
4
5
6
7
8
9
10
11
import java.io.*;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        int N = Integer.parseInt(br.readLine());

        System.out.println((N / 100 * 78) + " " + (N / 100 * 80 + N / 100 * 78 * 20 / 100));
    }
}


2. 풀이 [C++]

1
2
3
4
5
6
7
8
9
10
11
#include <bits/stdc++.h>
using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int n;
    cin >> n;
    cout << (n / 100 * 78) << ' ' << (n / 100 * 80 + n / 100 * 78 * 20 / 100);
}

This post is licensed under CC BY 4.0 by the author.