문제
풀이
import java.io.*;
import java.util.*;
class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// 밑변
double a = sc.nextInt();
// 높이
double b = sc.nextInt();
// 넓이
double c = (a*b) / 2;
String str = String.format("%.1f", c);
System.out.print(str);
}
}
'코딩테스트' 카테고리의 다른 글
[구름LEVEL] 거스름돈 (2) | 2021.03.12 |
---|---|
[구름LEVEL] Bubble sort (0) | 2021.03.12 |
[구름LEVEL] 공백 없애기 (0) | 2021.03.12 |
[구름LEVEL] 전기요금 (0) | 2021.03.12 |