Borrar filtros
Borrar filtros

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 visualización (últimos 30 días)
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

Respuestas (1)

Star Strider
Star Strider el 11 de Dic. de 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.

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by