Programming Shortcut

Write, Run and execute Your programs with simple and esay way by Programming Shortcut

Monday, October 23, 2017

Find a year is leap year or not in java


Hello friends! Welcome to my website
Java programming to find the year is a leap year or not that year entered by the user?
This Java language programming is free all type of errors like the compiler and runtime errors and this programming is tested to compile and then run the program code.
Here is only programming code with the output. This programming output is customized to understand easily.

Program to find a year is leap year or not in java


import java.util.Scanner;

class test1 {

    int year;

    public void show_laep_year(int year) {
        if (year % 100 != 0) {
            if (year % 4 == 0) {
                System.out.println("The year "+ year+ " is a Leap Year");
            }
            else {
                System.out.println("The year "+ year+ " is not a Leap Year");
            }
        } else {
            if (year % 400 == 0) {
                System.out.println("The year "+ year+ " is a Leap Year");
            }
            else {
                System.out.println("The year "+ year+ " is not a Leap Year");
            }
        }
    }
}
public class leapyear {

    public static void main(String[] args) {
        Scanner c = new Scanner(System.in);
        test1 o = new test1();
        System.out.print("Please Enter a Year: ");
        o.year = c.nextInt();
        o.show_laep_year(o.year);
    }
}


Output:
     Please Enter a Year: 2016
     The year 2016 is a Leap Year

     Please Enter a Year: 2015
     The year 2015 is not a Leap Year


Note: This Java programming is run two time


I make this programming and hope you are like the post if are you like the post you can please comment and Share the post to reach more people.
If any doubt about this Java programming code or input & output please comment below
If you have another question about Java programming send an email by contacting us form are given on the page right side.

Please share your experience about this post,
Thank You!
Newer Post Older Post Home
");

Programming Shortcut is collections in java best programs with example, best c programs with example and best c++ programs with example, best way to learn java, c and c++

About Programming Shortcut

This is a programming learning website that can help you learn and when your write your programming code. And all programming code is compiled run programming code in the following programming language C, c++, Java, php and Javascript Languages. find your programming read, understand the programming then copy and past and run your program and save your golden time to typing the program becuse you learn more in leas time. All Programming is codeing is ease to understand the programming