Trong bài này, chúng ta sẽ hiểu cách kiểm tra xem năm đã cho có phải là năm nhuận hay không. Điều này được thực hiện bằng cách kiểm tra xem năm đã cho có chia hết cho 4 và 100 hay không.
Một năm nhuận có một ngày bổ sung được thêm vào để giữ cho năm dương lịch được đồng bộ với năm thiên văn. Năm chia hết cho 4 được gọi là năm nhuận. Tuy nhiên, những năm chia hết cho 100 không phải là năm nhuận trong khi những năm chia hết cho 400 là.
Dưới đây là một minh chứng về điều tương tự -
Đầu vào
Giả sử đầu vào của chúng tôi là -
Enter a year: 2000
Đầu ra
Đầu ra mong muốn sẽ là -
2000 is a Leap year
Thuật toán
Step 1 - START Step 2 - Declare an integer values namely my_input and a Boolean value isLeap, Step 3 - Read the required values from the user/ define the values Step 4 - Check if the given year is divisible by 4 and 100 using an if-else condition Step 5 - Display the result Step 6 - Stop
Ví dụ 1
Ở đây, đầu vào đang được người dùng nhập dựa trên lời nhắc. Bạn có thể thử ví dụ này trực tiếp trong công cụ nền tảng mã hóa của chúng tôi .
import java.util.Scanner; public class LeapYear { public static void main(String[] args) { int my_input; boolean isLeap = false; System.out.println("Required packages have been imported"); Scanner my_scanner = new Scanner(System.in); System.out.println("A reader object has been defined "); System.out.print("Enter the year : "); my_input = my_scanner.nextInt(); if (my_input % 4 == 0) { if (my_input % 100 == 0) { if (my_input % 400 == 0) isLeap = true; else isLeap = false; } else isLeap = true; } else isLeap = false; if (isLeap) System.out.println(my_input + " is a Leap year"); else System.out.println(my_input + " is not a Leap year"); } }
Đầu ra
Required packages have been imported A reader object has been defined Enter the year : 2000 2000 is a Leap year
Ví dụ 2
Ở đây, số nguyên đã được xác định trước đó và giá trị của nó được truy cập và hiển thị trên bảng điều khiển.
public class LeapYear { public static void main(String[] args) { int my_input = 2000; boolean isLeap = false; System.out.println("The year is defined as " +my_input); if (my_input % 4 == 0) { if (my_input % 100 == 0) { if (my_input % 400 == 0) isLeap = true; else isLeap = false; } else isLeap = true; } else isLeap = false; if (isLeap) System.out.println(my_input + " is a Leap year"); else System.out.println(my_input + " is not a Leap year"); } }
Đầu ra
The year is defined as 2000 2000 a Leap year