Question

1) Write a MATLAB script to prompt a user to input two numbers, then assess whether...

1) Write a MATLAB script to prompt a user to input two numbers, then assess whether the two numbers are equal or not. If the two numbers are equal, display that they are equal in the Command Window. If they are not equal, display that they are not equal in the Command Window.

2) Write a MATLAB script that prompts the user to enter the day of the week using the input function. If the information the user enters is equal to “Saturday” or “Sunday”, display “have a nice weekend” in the Command Window. Otherwise, display “Good luck in your class lectures and your studies.”

0 0
Add a comment Improve this question Transcribed image text
Answer #1

1)

x=input('Enter first number')
y=input('Enter second number')
if x==y
disp('The two numbers are equal')
else
disp('The two numbers are not equal')
end

Stdin Inputs 1 Execute Result executed in 1.095 sec(s) CPU Time: 0.14 sec(s), Memory: 40444 kilobyte(s) Enter first numberx =Stdin Inputs 1 2 Execute Result executed in 1.061 sec(s) CPU Time: 0.10 sec(s), Memory: 40632 kilobyte(s) Enter first numberx

2)

day=input('Enter the day of the week','s')
if strcmpi(day,"Saturday")==1||strcmpi(day,"Sunday")==1
disp('have a nice weekend')
else
disp('Good luck in your class lectures and your studies.')
end

Stdin Inputs Sunday Execute Result CPU Time: 0.18 sec(s), Memory: 40544 kilobyte(s) executed in 1.227 sec(s) Enter the day ofStdin Inputs Monday Execute Result CPU Time: 0.08 sec(s), Memory: 40316 kilobyte(s) executed in 0.939 sec(s) Enter the day of

Add a comment
Know the answer?
Add Answer to:
1) Write a MATLAB script to prompt a user to input two numbers, then assess whether...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
Active Questions
ADVERTISEMENT