Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Kaggle
- Real or Not? NLP with Disaster Tweets
- 프로그래머스 파이썬
- PYTHON
- 자연어처리
- 코로나19
- 파이썬
- hackerrank
- 편스토랑
- SW Expert Academy
- 맥북
- Baekjoon
- Git
- 편스토랑 우승상품
- github
- programmers
- leetcode
- dacon
- 더현대서울 맛집
- 우분투
- AI 경진대회
- Docker
- ChatGPT
- 백준
- ubuntu
- 데이콘
- 캐치카페
- 프로그래머스
- gs25
- 금융문자분석경진대회
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 6825번 : Body Mass Index (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 Body Mass Index 입니다.
👨🏻💻 코드 ( Solution )
def get_bmi(weight, height):
return weight / (height * height)
def body_mass_index(weight, height):
check_result = ""
bmi = get_bmi(
weight=weight, height=height
)
if bmi < 18.5:
check_result = "Underweight"
elif 18.5 <= bmi < 25:
check_result = "Normal weight"
elif bmi >= 25:
check_result = "Overweight"
return check_result
if __name__ == "__main__":
weight = float(input())
height = float(input())
print(body_mass_index(weight=weight, height=height))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 5691번 : 평균 중앙값 문제 (Python) (0) | 2022.12.31 |
---|---|
[BaekJoon] 11557번 : Yangjojang of The Year (Python) (0) | 2022.12.30 |
[BaekJoon] 26711번 : A+B (Python) (2) | 2022.12.28 |
[BaekJoon] 26574번 : Copier (Python) (0) | 2022.12.27 |
[BaekJoon] 5357번 : Dedupe (Python) (0) | 2022.12.26 |
Comments