BlueX

[PHP]: Calcular a Taxa metabólica basal (TMB)

Apr 13th, 2012
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php
  2.  
  3. function TMB($sexo,$peso,$altura,$idade){
  4.    if($sexo == 1) //masculino
  5.       return 66 + (13.7 * $peso) + (5 * $altura) - (6.8 * $idade);
  6.    else if($sexo == 2) //femenino
  7.       return 65.5 + (9.6 * $peso) + (1.8 * $altura) - (4.7 * $idade);
  8. }
  9.  
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment