Toph easy problem(Leap Years)

Question:

Leap Years

Limits: 1s, 512 MB

In the Gregorian calendar, certain years have 366 days instead of 365. In such years, the month of February is extended to have 29 days (instead of 28 days). These years are known as leap years.
A leap year occurs when the year is a multiple of 4 but not a multiple of 400.
Given a year, determine if the year is a leap year.

Input

The input will contain a one integer Y (0 < Y < 9999).

Output

Print “Yes” if the year is a leap year, otherwise “No”.

Samples

InputOutput
2004

Solve in C:

#include<stdio.h>
int main()
{
    int n;
    scanf("%d",&n);
    if(((n%4)==0)&&((n%400)!=0))
        printf("Yes\n");
    else
        printf("No\n");
    return 0;
}



Yes

No comments

Most View Post

Recent post

Codeforces Round 925 (Div. 3) 1931D. Divisible Pairs Solution

    Problem Link  :   https://codeforces.com/contest/1931/problem/D S olution in C++: /// Author : AH_Tonmoy #include < bits / stdc ++. ...

Powered by Blogger.