[C#] 7일차 - 42. BMI계산기C#/C#200제2021. 1. 22. 11:13
Table of Contents
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace A042_BMI
{
class Program
{
static void Main(string[] args)
{
Console.Write("키를 입력하세요(cm) : ");
double height = Double.Parse(Console.ReadLine());
height /= 100; // m단위로 변경
Console.Write("체중을 입력하세요(kg) : ");
double weight = Double.Parse(Console.ReadLine());
double bmi = weight / (height * height);
string comment = null;
if (bmi < 20)
comment = "저체중";
else if (bmi < 25)
comment = "정상체중";
else if (bmi < 30)
comment = "경도비만";
else if (bmi < 40)
comment = "비만";
else
comment = "고도비만";
Console.WriteLine("BMI={0:F1}, \"{1}\"입니다.", bmi, comment);
}
}
}
반응형
'C# > C#200제' 카테고리의 다른 글
[C#] 7일차 - 44. 반복문으로 2진, 8진, 16진 출력 (0) | 2021.01.22 |
---|---|
[C#] 7일차 - 43. 반복문(1에서100까지 더하기, 홀수의합, 역수의합) (0) | 2021.01.22 |
[C#] 7일차 - 41. switch문 (0) | 2021.01.22 |
[C#] 6일차 - 40. if~else 조건문 (0) | 2021.01.21 |
[C#] 6일차 - 39. object 타입과 boxing, unboxing (0) | 2021.01.21 |
@반나무 :: 반나무_뿌리
3년차 WPF 개발자입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!