Skip to content

Instantly share code, notes, and snippets.

@Kkan9ma
Last active June 26, 2019 05:14
Show Gist options
  • Save Kkan9ma/606078fc1be26a23c24a0f64577ec77f to your computer and use it in GitHub Desktop.
Save Kkan9ma/606078fc1be26a23c24a0f64577ec77f to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
</head>
<body>
<h2>연습문제 1-2: BMI 계산기</h2>
<script>
var height = prompt("키를 입략하세요 (cm)");
var scale = prompt("체중을 입력하세요 (kg)");
var heightNumber = Number(height) / 100;
var scaleNumber = Number(scale);
var BMI = scaleNumber / (heightNumber * heightNumber);
document.write("BMI 지수는" + BMI + "입니다");
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment