Answers for "check year is leap year or not"

6

Check if a year is a leap year

if (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0))
cout<<year<<" is a leap year";
else
cout<<year<<" is not a leap year";
Posted by: Guest on August-21-2021
0

Code to check Check whether a year is leap year or not

<?php
    $year = 2022;
    if($year % 4 == 0) {
      echo $year." is a leap year";
    }
    else {
      echo $year." is a not leap year";
    }
  ?>
Posted by: Guest on April-10-2022

Code answers related to "check year is leap year or not"

Code answers related to "Javascript"

Browse Popular Code Answers by Language