Post

[BaekJoon] 30030번 - 스위트콘 가격 구하기 [Java][C++]

[BaekJoon] 30030번 - 스위트콘 가격 구하기 [Java][C++]

문제 링크


1. 문제 풀이


$A$ 원에서 부가가치세를 포함한 가격이 $B$ 로 $B = \dfrac{110}{100} \times A$ 다.


2. 코드


1. 풀이 [Java]

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

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

        int B = Integer.parseInt(br.readLine());
        System.out.println(B * 10 / 11);
    }
}


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 b;
    cin >> b;
    cout << b * 10 / 11;
}

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