Skip to content

Instantly share code, notes, and snippets.

@smyy96
Created January 21, 2022 09:03
Show Gist options
  • Save smyy96/b93d95862d90a9b4929adcbaccf17d83 to your computer and use it in GitHub Desktop.
Save smyy96/b93d95862d90a9b4929adcbaccf17d83 to your computer and use it in GitHub Desktop.
Patika Java 101 - Artık Yıl
import java.util.Scanner;
public class artikYil {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int yil,artik=0, artikY=0;
System.out.print("Yıl Giriniz : ");
yil = input.nextInt();
artik=yil%4;
artikY=yil%100;
if (artik==0)
if ((artikY==0)&&(yil%400==0))
System.out.print(yil+" bir artık yıldır !");
else if((artikY==0)==false)
System.out.print(yil+" bir artık yıldır !");
else
System.out.print(yil+" bir artık yıl değildir !");
else
System.out.print(yil+" bir artık yıl değildir !");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment