Last active
June 26, 2019 05:14
-
-
Save Kkan9ma/606078fc1be26a23c24a0f64577ec77f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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