Solution
#include <stdio.h>
int main()
{
int year;
scanf("%d",&year);
if(year%4==0)
{
printf("Yes");
}
else
printf("No");
return 0;
}
For python program visit the link given below.This blog is to help for the programmers to learn the programs and not to demotivate any people .Our intention is to make the learners to learn the code easily.
2016
Yes
2001
No
Problem Description Ram and Sita playing the parity game. Two types of parity are there. One is odd parity and next is even parity. Ram will...
No comments:
Post a Comment