Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started