Question: Problem 3. Write a Matlab program that asks the user to input an integer. Print Even if the number is even. Prints Odd if the
Problem 3. Write a Matlab program that asks the user to input an integer. Print "Even" if the number is even. Prints "Odd" if the number is odd. Use the rem function to test for an even or odd number. The rem (X,Y) function retums the remainder of dividing X by Y. If rem(X,2)=0, X is even. Use the if-else statement in your solution. The following is a sample of an output from two separate executions of the program: Type an integer: 2 Even Type an integer: 3 Odd
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
