How to make text conditional statements
5 views (last 30 days)
Show older comments
complete total beginner here, but im trying to write a script that tells u how many bones in a limb but need help writing the seond line

0 Comments
Answers (1)
ClementJ
on 14 May 2022
Hi,
Maybe use '\n' in your line 2:
prompt = 'Enter Bady Part : \n';
g = input(prompt,'s');
if g == 'hand'
disp('27')
elseif g == 'finger'
disp('3')
end
0 Comments
See Also
Categories
Find more on Entering Commands in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!