1. 삼각형의 넓이
만든이 : 화난 백숙
2. 문제정보
level.goorm.io/exam/43251/%EC%82%BC%EA%B0%81%ED%98%95%EC%9D%98-%EB%84%93%EC%9D%B4/quiz/1
3. 풀이
높이와 밑변를 입력받는 구조이니 map 함수를 이용하여 띄어쓰기 부분을 나누어 int형으로 따로 받았다
나누어진 값을 곱하여 2로 나눠주면 삼각형 넓이가 나온다
# -*- coding: utf-8 -*-
# UTF-8 encoding when using korean
height, width = map(int, input().split())
print(height*width/2)
4. 결과
# -*- coding: utf-8 -*-
# UTF-8 encoding when using korean
height, width = map(int, input().split())
print(height*width/2)
'Goorm ide 코딩 문제 > Level 1' 카테고리의 다른 글
[Goorm LEVEL 1] 16진수 (0) | 2021.04.13 |
---|---|
[Goorm LEVEL 1] 거스름돈 (0) | 2021.04.13 |
[Goorm LEVEL 1] Bubble Sort (0) | 2021.04.12 |
[Goorm LEVEL 1] 공백 없애기 (0) | 2021.04.12 |
[Goorm LEVEL 1] Hello Goorm! (0) | 2021.04.12 |