Sunday 22 October 2017

How to find Leap Year in c++

#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
        int year;
        cout<<"Enter the year : ";
        cin>>year;
        if(year%4==0)
        cout<<year<<" is a leap year.";
        else
        cout<<year<<" is not a leap year.";
        getch();
        return 0;
}

Output


No comments:

Post a Comment

Python Program to find Fabonacci

fabtab={} def fabonacci(n):     fabtab[0]=0     fabtab[1]=1     for i in range(2,n+1):         fabtab[i]=fabtab[i-1]+fabtab[i-2]         ...