Effacer les filtres
Effacer les filtres

write a Matlab script that asks a group of up to 40 members to enter their height (in cm) and their weight (in kg).

1 vue (au cours des 30 derniers jours)
It should work like this: Prompt the user to enter the two values. • Read in the input from the user, if any of the input values is ≤ 0, the program stops asking for more data. Otherwise, it stores the input value in an appropriate variable. • Repeat steps for the next member, until the 40th member is done. • It finishes by printing a message indicating the number of members entered.
My script which doesn't quite work is:
While continue==1
Height= input('Enter your height in cm: ')
Weight= input('Enter your weight in kg: ')
If height<0
Continue=0;
End
If weight<0
Continue=0;
End
End

Réponses (1)

Star Strider
Star Strider le 11 Déc 2015
Please consult the documentation on Case and Space Sensitivity, and the relevant documentation for the functions you are using.
For example, While is not the same as while.

Catégories

En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by