Can't run my 'if, elseif, else' code

1 回表示 (過去 30 日間)
Waqar
Waqar 2023 年 3 月 15 日
コメント済み: Dyuman Joshi 2023 年 3 月 15 日
score= randi(100);
if score < 20
grade= 'D';
print grade
elseif score < 40
grade= 'C';
print grade
elseif score < 60
grade= 'B';
print grade
elseif score < 80
grade= 'B+';
print grade
else
grade= 'A';
print grade
end
i tried to run a basic if else loop but no matter what score i input in the command wndow, my answer is always 'A'.

採用された回答

KSSV
KSSV 2023 年 3 月 15 日
score= randi(100);
if score < 20
grade = 'D';
elseif score < 40
grade= 'C';
elseif score < 60
grade= 'B';
elseif score < 80
grade= 'B+';
else
grade= 'A';
end
disp(grade)

その他の回答 (1 件)

Dyuman Joshi
Dyuman Joshi 2023 年 3 月 15 日
編集済み: Dyuman Joshi 2023 年 3 月 15 日
if-else is not a loop, they are conditional statements.
If you want to print/display something, use sprintf or fprintf or disp. However, if you want see the value of a variable, type the variable name without using semi colon
score= randi(100)
score = 52
if score < 20
grade= 'D';
elseif score < 40
grade= 'C';
elseif score < 60
grade= 'B';
elseif score < 80
grade= 'B+';
else
grade= 'A';
end
grade
grade = 'B'
  6 件のコメント
Waqar
Waqar 2023 年 3 月 15 日
Worked! Thanks a lot!
Dyuman Joshi
Dyuman Joshi 2023 年 3 月 15 日
You are welcome!

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

カテゴリ

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

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by