Menentukan Jumlah Hari

 Assalamualaikum semuanya, . .
Kali ini saya akan membagikan menghitung jumlah hari pada pemrograman java, . .
 Selamat mencoba, . .
 
import java.util.Scanner;

public class NumberOfDays {

    public static void main(String[] args) {
        @SuppressWarnings("resource")
        Scanner s = new Scanner(System.in);
      
        System.out.print("Enter month and year: ");
        int month = s.nextInt();
        int year = s.nextInt();
      
        if (month == 1) {
            System.out.println("January " + year + " has 31 days");
        }
        else if (month == 2 && year % 4 != 0) {
            System.out.println("February " + year + " has 28 days");
        }
        else if (month == 2 && ((year % 4 == 0 && year % 100 == 0) || year % 400 == 0)) {
            System.out.println("January " + year + " has 29 days");
        }
        else if (month == 3) {
            System.out.println("March " + year + " has 31 days");
        }
        else if (month == 4) {
            System.out.println("April " + year + " has 30 days");
        }
        else if (month == 5) {
            System.out.println("May " + year + " has 31 days");
        }
        else if (month == 6) {
            System.out.println("June " + year + " has 30 days");
        }
        else if (month == 7) {
            System.out.println("July " + year + " has 31 days");
        }
        else if (month == 8) {
            System.out.println("August " + year + " has 31 days");
        }
        else if (month == 9) {
            System.out.println("September " + year + " has 30 days");
        }
        else if (month == 10) {
            System.out.println("October " + year + " has 31 days");
        }
        else if (month == 11) {
            System.out.println("November " + year + " has 30 days");
        }
        else if (month == 12) {
            System.out.println("December " + year + " has 31 days");
        } else {
            System.out.println("Invalid input!");
        }
    }

}



Semoga bermanfaat, . .

Subscribe to receive free email updates:

0 Response to "Menentukan Jumlah Hari"

Post a Comment