Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function index() {
  2.             var height;
  3.             var mass;
  4.             var age;
  5.             height = document.BMI_rechner.height.value;
  6.             mass = document.BMI_rechner.mass.value;
  7.             age = document.getElementById('age').value;
  8.             var bmi = (mass / (height * height)) * 10; //Berechnung
  9.             bmi = Math.round(bmi);
  10.             bmi = bmi / 10;
  11.             document.BMI_rechner.output.value = bmi //Ausgabe
  12.  
  13.             switch(Number(age)) {
  14.                 case (19): document.BMI_rechner.ideal.value = "19 und 24";
  15.                         break;
  16.         }
  17.            
  18.  
  19.             if (bmi < 16) {
  20.                 document.BMI_rechner.overweight.style.color = "#ffa600";
  21.                 document.BMI_rechner.overweight.value = "Sie haben Untergewicht!"
  22.             } else {
  23.                 if (bmi > 25) {
  24.                     document.BMI_rechner.overweight.style.color = "#ff0000";
  25.                     document.BMI_rechner.overweight.value = "Sie haben Übergewicht!";
  26.                 } else {
  27.                     document.BMI_rechner.overweight.style.color = "#00ff00";
  28.                     document.BMI_rechner.overweight.value = "Sie haben Normalgewicht!";
  29.                 }
  30.             }
  31.  
  32.            
  33.            
  34.            
  35.  
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement