java leap year

java leap year

write a java program that takes an input as a keyboard inputs or command line argument, a year between 1800 and 2000 and then reports whether itis a leap year. Aleap year is an integer greater than 1584 that is either divisible by 400 or is divisible by 4 but not 100

View Answers

October 23, 2010 at 11:50 AM

Hi Friend,

Try the following code:

import java.util.*;

public class LeapYear{
   public static boolean isLeapYear(int year) {

    if (year < 0) {
      return false;
    }
    if (year % 4 == 0) {
      return true;
    }  else if (year % 400 == 0) {
      return true;
    } 
    else if (year % 100 == 0) {
      return false;
    }
    else {
      return false;
    }
  }
public static void main(String[] args){
    Scanner in = new Scanner(System.in);
    System.out.println("Enter any year:" );
    int y = in.nextInt();
        LeapYear year = new LeapYear();
    if (year.isLeapYear(y)){
    System.out.println("It is a leap year.");
    }           
    else{
    System.out.println("It is not a leap year.");
    }
}
}

Thanks









Related Tutorials/Questions & Answers:
java leap year
java leap year  write a java program that takes an input... whether itis a leap year. Aleap year is an integer greater than 1584...("It is a leap year."); } else{ System.out.println("It is not a leap
Java Leap Year Problem
Java Leap Year Problem  I need help with a writing a program in Java that creates a class Year that contains a data field that holds the number of months in a year and the number of days in a year. It should include a get method
Advertisements
leap year logic - Java Beginners
leap year logic  hi frds.. can u give me logic for leap year..  Hi Friend, Please visit the following link: http://www.roseindia.net/java/beginners/Leapyear.shtml Thanks
leap year
leap year  how to create class for leap year. It is leap year...(); if (year.isLeapYear(y)){ System.out.println("It is a leap year."); } else{ System.out.println("It is not a leap year
Determining If a Year is a Leap Year in Java
Determining If a Year is a Leap Year in Java       Leap Year: Leap Year is the year contains an extra day. In the leap year, February month contains 29 days since normally
Checking whether a year is leap or not
Checking whether a year is leap or not   ... for checking whether a year is a leap year or not. Here, we have taken the year 2000. So...;if else" condition. As we know leap year is divided by the integer 4 and so
leap
leap   Check the given year for leap year (Test Case: 2010, 2012 , 1900
Java converts any given year to Roman Numeral
Java converts any given year to Roman Numeral  Write a program that converts any given year to Roman Numeral
Retrieve all the students in the same year(Java ArrayList)?
Retrieve all the students in the same year(Java ArrayList)?  FoundStudents.jsp year- parameter I receive from a form search- is an object of type Student, with ID, name, year <% Student search = null; ArrayList<Student>
convert date month and year into word using java
convert date month and year Java  convert the date, month,year into word like 12-3-2012 into twelve march two thousands twelve pls send the code write in java.   Visit Here
convert date month and year into word using java
convert date month and year into word using java  convert the date, month,year into word like 12-3-2012 into twelve march two thousands twelve pls send the code write in java.   Visit Here
convert date month and year into word using java
convert date month and year into word using java  convert the date, month,year into word like 12-3-2012 into twelve march two thousands twelve pls send the code write in java.   Visit Here
convert date month and year into word using java
convert date month and year into word using java  convert the date, month,year into word like 12-3-2012 into twelve march two thousands twelve pls send the code write in java.   Visit Here
convert date month and year into word using java
Java Date Month Format  convert the date, month,year into word like 12-3-2012 into twelve march two thousands twelve pls send the code write in java.   Visit Here
convert date month and year into word using java
convert date month and year  convert the date, month,year into word like 12-3-2012 into twelve march two thousands twelve pls send the code write in java.   Visit Here
convert date month and year into word using java
Match Date format  convert the date, month,year into word like 12-3-2012 into twelve march two thousands twelve pls send the code write in java.   Visit Here
convert date month and year into word using java
Date Format in Jave  convert the date, month,year into word like 12-3-2012 into twelve march two thousands twelve pls send the code write in java.   Visit Here
convert date month and year into word using java
Basic format for Date and Month  convert the date, month,year into word like 12-3-2012 into twelve march two thousands twelve pls send the code write in java.   Visit Here
convert date month and year into word using java
Convert Date Month format  convert the date, month,year into word like 12-3-2012 into twelve march two thousands twelve pls send the code write in java.   Visit Here
convert date month and year into word using java
Convert Date Format  convert the date, month,year into word like 12-3-2012 into twelve march two thousands twelve pls send the code write in java.   Visit Here
Addintion in year fields of sql date in a java page
Addintion in year fields of sql date in a java page  In my database...("Year: " + simpleDateformat.format(date)); String k= simpleDateformat.format(date); } But I have to add 4 with the year value
ModuleNotFoundError: No module named 'leap'
ModuleNotFoundError: No module named 'leap'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'leap' How to remove the ModuleNotFoundError: No module named 'leap' error
ModuleNotFoundError: No module named 'leap'
ModuleNotFoundError: No module named 'leap'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'leap' How to remove the ModuleNotFoundError: No module named 'leap' error
ModuleNotFoundError: No module named 'leap'
ModuleNotFoundError: No module named 'leap'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'leap' How to remove the ModuleNotFoundError: No module named 'leap' error
Add year to Date without using Calendar in java
Add year to Date without using Calendar in java  how could i add a year to a date function without using calendar functions
convert date month and year into word using java
convert date month and year into word using java  convert the date, month,year into word like 12-3-2012 into twelve march two thousands twelve pls send the code write in java.   import java.util.*; import java.text.
convert date month and year into word using java
convert date month and year into word using java  convert the date, month,year into word like 12-3-2012 into twelve march two thousands twelve pls send the code write in java.   import java.util.*; import java.text.
Java get Year
Java get Year       In this section, you will learn how to obtain the current year. The Calendar.... The method cal.get(Calendar.YEAR) will return the current year. Here
ModuleNotFoundError: No module named 'leap-client'
ModuleNotFoundError: No module named 'leap-client'  Hi, My Python... 'leap-client' How to remove the ModuleNotFoundError: No module named 'leap-client' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'leap-client'
ModuleNotFoundError: No module named 'leap-client'  Hi, My Python... 'leap-client' How to remove the ModuleNotFoundError: No module named 'leap-client' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'leap_gwas'
ModuleNotFoundError: No module named 'leap_gwas'  Hi, My Python... 'leap_gwas' How to remove the ModuleNotFoundError: No module named 'leap... have to install padas library. You can install leap_gwas python with following
ModuleNotFoundError: No module named 'leap-protocol'
ModuleNotFoundError: No module named 'leap-protocol'  Hi, My... 'leap-protocol' How to remove the ModuleNotFoundError: No module named 'leap-protocol' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'leap-server'
ModuleNotFoundError: No module named 'leap-server'  Hi, My Python... 'leap-server' How to remove the ModuleNotFoundError: No module named 'leap-server' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'linggle-leap'
ModuleNotFoundError: No module named 'linggle-leap'  Hi, My Python... 'linggle-leap' How to remove the ModuleNotFoundError: No module named 'linggle-leap' error? Thanks   Hi, In your python
Write a program that converts any given year to Roman Numeral in Java
Write a program that converts any given year to Roman Numeral in Java  Write a program that converts any given year to Roman Numeral
Java get year from date
Java get year from date       In this section you will study how to retrieve the year from... showing the format of year. The method simpleDateformat.format(date) formats
Listing out leap years between certain period
.  As we know a leap year is divisible by 4, define an integer l=n%4. So if 'n' is divisible by 4 or l=0, then the particular year can be a leap year... will be a leap year. For listing out each year write "+n"
ModuleNotFoundError: No module named 'leap-second-client'
ModuleNotFoundError: No module named 'leap-second-client'  Hi, My... named 'leap-second-client' How to remove the ModuleNotFoundError: No module named 'leap-second-client' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'mailpile-leap-adapter'
ModuleNotFoundError: No module named 'mailpile-leap-adapter'  Hi...: No module named 'mailpile-leap-adapter' How to remove the ModuleNotFoundError: No module named 'mailpile-leap-adapter' error? Thanks   Hi
wrong year
wrong year..ADS_TO_REPLACE_1   I think u are using other calendar Check
java program - Java Beginners
java program  program to find whether the given year is a LEAP YEAR... is leap year or not. public class CheckLeapYear { public static void...) { System.out.println(year + " is a Leap year."); } // Is theYear Divisible by 4
name of year in chinese
name of year in chinese   hello my name kiemtheng i'm come from Cambodia, i would to write java programming to calculate a name of year for each... out put . Enter day of birth: 02 Enter month of birth: 10 Enter year of birth
name of year in chinese
name of year in chinese   hello my name kiemtheng i'm come from Cambodia, i would to write java programming to calculate a name of year for each birthday in Chinese but i dont know how to do.   import java.util.
pava program - Java Beginners
pava program  program to display whether the given year is LEAP YEAR... % 100 != 0) { System.out.println(year + " is a Leap year...) { System.out.println(year + " is a Leap year."); } // It is Divisible
How to calculate days in a year
How to calculate days in a year  Hi, How to calculate no of days in a year? I want a program that calculates no of days in a year by specifying year... of calculating days in a year? Thanks
Mysql Year of Date
Mysql Year of Date       Mysql Year of Date is used to return the current year of the table... from 'Mysql Year of Date'. To understand and grasp the example we use
Mysql Date Get Year
Mysql Date Get Year       Mysql Date Get Year is the way of retrieving the current year... 'Mysql Date Get Year'. To understand and grasp this example, we use
Mysql Date Add Year
Mysql Date Add Year       Mysql Date Add Year explains to add the year to the particular... an example from 'Mysql Date Add Year'. To graspe this example, we use Add
JSP Financial Year Table
JSP Financial Year Table  Im trying to design a financial year table...wherein the user enters the data in the table and the same is updated in backend.i have successfully desinged the page but i have certain doubts in jsp
ModuleNotFoundError: No module named 'week-of-year'
ModuleNotFoundError: No module named 'week-of-year'  Hi, My Python... 'week-of-year' How to remove the ModuleNotFoundError: No module named 'week-of-year' error? Thanks   Hi, In your python

Ads