Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. BMI = KG / ((CM / 100) ^ 2)
  2. Label5.Text = BMI
  3. If RadioButton1.Checked = True Then
  4. Normal = (CM - 80) * 0.7
  5. If BMI <= 27.8 Then
  6. Label6.Text = "標準身材"
  7. Label8.Text = Normal
  8. Else
  9. Label6.Text = "肥胖身材"
  10. Label8.Text = Normal
  11. End If
  12. Else
  13. If BMI <= 27.3 Then
  14. Normal = (CM - 70) * 0.6
  15. Label6.Text = "標準身材"
  16. Label8.Text = Normal
  17. Else
  18. Label6.Text = "肥胖身材"
  19. Label8.Text = Normal
  20. End If
  21. End If
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement