A Collection of Code Snippets in as Many Programming Languages as Possible
This project is maintained by TheRenegadeCoder
Welcome to the Even Odd in Matlab page! Here, you’ll find the source code for this program as well as a description of how the program works.
function result_string= odd_even(number)
%number - input by user
%result_string - output determined by this program
if (nargin==0)
%if there was no input
result_string = 'please input a number';
elseif ~isnumeric(number) || mod(number,1) ~= 0
%check whether input is a number
%also check if input is an integer
result_string = 'please input a number';
else
if mod(number,2) == 0
result_string = 'Even';
else
result_string = 'Odd';
end
end
end
Even Odd in Matlab was written by:
If you see anything you’d like to change or update, please consider contributing.
Note: The solution shown above is the current solution in the Sample Programs repository as of May 22 2021 15:02:49. The solution was first committed on Oct 11 2019 15:40:27. As a result, documentation below may be outdated.
No ‘How to Implement the Solution’ section available. Please consider contributing.
No ‘How to Run the Solution’ section available. Please consider contributing.