フィルターのクリア

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 回表示 (過去 30 日間)
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

回答 (1 件)

Star Strider
Star Strider 2015 年 12 月 11 日
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.

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by