[BaekJoon] 29751번 - 삼각형 [Java][C++]
[BaekJoon] 29751번 - 삼각형 [Java][C++]
1. 문제 풀이
삼각형의 넓이는 $\dfrac{1}{2} \times W \times H$ 로 구할 수 있다.
2. 코드
1. 풀이 [Java]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int W = Integer.parseInt(st.nextToken());
int H = Integer.parseInt(st.nextToken());
System.out.printf("%.1f", 0.5 * W * H);
}
}
2. 풀이 [C++]
fixed와 setprecision(9)을 통해 소수점 아래 한 자리를 항상 출력할 수 있게 해주었다.
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 w, h;
cin >> w >> h;
cout << fixed << setprecision(1) << 0.5 * w * h;
}
This post is licensed under CC BY 4.0 by the author.