Question: Instructions: The variable to be tested, year , should be a hard-coded parameter. Also, within your programs comments, indicate a set of test values that
Instructions: The variable to be tested, year, should be a hard-coded parameter. Also, within your programs comments, indicate a set of test values that would exercise all four possible outcomes of the if statements.
ex: The year 2016 WAS a leapyear!
Sorry, the year 1900 was NOT a leapyear.
My code:
year = uint16(2012); leapyear = false;
if rem(year %4) == 0 leapyear = true; end
if rem(year %100) == 0 leapyear = false; end
if rem(year %400) == 0 leapyear = true; end
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
