[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(0);
cin.tie(0);
int b;
cin >> b;
cout << b * 10 / 11;
}
3. 디버깅
없음.
4. 참고
없음.
This post is licensed under CC BY 4.0 by the author.