I need help with this script
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I'm strying to run a script but keep getting an error message.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/275165/image.png)
T = input('Enter your temperature')
if T<=96
disp('You are either hypothermic or a zombie')
elseif
96<T<99
disp('Your temperature is normal')
elseif
99<=T<=102
disp('You are running a fever')
else
T>102
disp('Go to the emergency room now!')
end
0 commentaires
Réponses (1)
Jim Riggs
le 4 Mar 2020
Modifié(e) : Jim Riggs
le 4 Mar 2020
Try this:
T = input('Enter your temperature')
if T<=96
disp('You are either hypothermic or a zombie')
elseif T<99
disp('Your temperature is normal')
elseif T<=102
disp('You are running a fever')
else
disp('Go to the emergency room now!')
end
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!