Select Menu

Search This Blog

Populer Posts Hari ini

Popular Posts

Powered by Blogger.

Lorem 1

adsense

" });

Circle Gallery

" });

News

" });
» » » » Source Code menentukan Tahun Kabisat dengan bahasa Java


package tahunkabisat;
import java.util.Scanner;

public class Tahunkabisat {

    public static void main(String[] args) {
       int tahun;
       Scanner input = new Scanner(System.in);
       System.out.print("tahun =");
       tahun =input.nextInt();
       if((tahun %100 != 0 || tahun%400==0 )&& (tahun %4==0)){
           System.out.println(tahun+ " adalah tahun kabisat");
       }
       else{
           System.out.println(tahun+ " adalah bukan kabisat ");
       }
    }
}

About andi

«
Next
Newer Post
»
Previous
Older Post

No comments

Leave a Reply