0
0

More than 3 years have passed since last update.

ボディマス指数の計算方法(BMI)

Posted at

HTML

<!doctype html>



適正体重サンプル





身長:
m







PHP

<?php
$height = $_POST['height'];
echo '適正体重は' . $height * $height * 22 . 'kgです。';

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0