フィルターのクリア

Invalid expression. Need help fixing my function.

2 ビュー (過去 30 日間)
Jacob Smith
Jacob Smith 2021 年 2 月 27 日
コメント済み: Jacob Smith 2021 年 2 月 27 日
I am new to all of this and cant figure out what it is I am doing wrong. I've been at this for sometime now and I've looked at a lot of reference material and still I have nothing working for me. What error have I made and how can it be fixed? I'm going braindead over here, please and thank you! I've underlined the current trouble spot.
function grade = lettergrade(score)
if score < 0 "OR" score > 100
grade = 'incorrect input';
elseif score <= 90 && score <= 100
grade = 'A';
elseif score >= 80 && score <= 90
grade = 'B';
elseif score >= 70 && score < 80
grade = 'C';
elseif score >= 60 && score < 70
grade = 'D';
elseif score < 60
grade = 'F';
end
Error: File: lettergrade.m Line: 2 Column: 19
Invalid expression. Check for missing multiplication operator, missing or unbalanced delimiters, or other syntax error. To construct matrices, use brackets instead of
parentheses.

採用された回答

Walter Roberson
Walter Roberson 2021 年 2 月 27 日
if score < 0 || score > 100
  5 件のコメント
Jacob Smith
Jacob Smith 2021 年 2 月 27 日
I think I'm smellin what you're cooking. Thanks for the help.
Jacob Smith
Jacob Smith 2021 年 2 月 27 日
Yep, everything is working as it should. Thanks!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by