필터 지우기
필터 지우기

Applying multiple conditions to an 'if' statement

조회 수: 3 (최근 30일)
Broughieee
Broughieee 2015년 10월 23일
답변: Ken Atwell 2015년 10월 23일
Okay, so I'm trying to do a homework assignment for my Matlab class. Here's the prompt:
"Design and implement a Matlab script that reads an integer value representing a year from the user. The purpose of the program is to determine if the year is a leap year (and therefore has 29 days in February) in the Gregorian calendar. A year is a leap year if it is divisible by 4, unless it is also divisible by 100 but not 400.
For example, the year 2003 is not a leap year, but 2004 is. The year 1900 is not a leap year because it is divisible by 100, but the year 2000 is a leap year because though it is divisible by 100, it is also divisible by 400.
Produce an error message for any input value less than 1582 (the year the Gregorian calendar was adopted)."
So far this is what I've accomplished: See link
However, I can't seem to figure out how to apply the condition that if the year is divisible by 100 and by 400, then it is a leap year, rather than it not being a leap year..

답변 (2개)

Broughieee
Broughieee 2015년 10월 23일
편집: Broughieee 2015년 10월 23일
uhmm.. I actually have more than what the link is showing..
  댓글 수: 1
John D'Errico
John D'Errico 2015년 10월 23일
Please don't add new answers every time you want to make a comment.

댓글을 달려면 로그인하십시오.


Ken Atwell
Ken Atwell 2015년 10월 23일
You might be looking for logical operators.

카테고리

Help CenterFile Exchange에서 Calendar에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by