Multi-line condition judgment

Source: Internet
Author: User

Practice

Xiao Ming is 1.75 tall and weighs 80.5kg. Please help Xiao Ming calculate his BMI according to the BMI formula (weight divided by the square of height) and according to the BMI Index:

    • Less than 18.5: too light
    • 18.5-25: Normal
    • 25-28: Overweight
    • 28-32: Obesity
    • Above 32: Severe obesity

To if...else... judge and display the result:

varHeight = parsefloat (Prompt (' Please enter height (m): '));varWeight = parsefloat (Prompt (' Please enter weight (kg): '));varBMI = Math.Abs (weight/(Height *height));if(BMI < 18.5) {alert (' Too light ');} Else if(BMI <= 25) {alert (Normal);} Else if(BMI < 28) {alert (Overweight);} Else if(BMI < 32) {alert (Obesity);} Else{alert (' Severe obesity ');}

Multi-line condition judgment

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.