Created
January 21, 2022 08:26
-
-
Save smyy96/b0343ed171a8cde93d3b780c14009c8f to your computer and use it in GitHub Desktop.
Patika Java 101 - Çin Zodyağı Hesaplama
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
public class zodyakHesaplama { | |
public static void main(String[] args) { | |
Scanner input = new Scanner(System.in); | |
int yil; | |
System.out.print("Doğum Yılınızı Giriniz : "); | |
yil = input.nextInt(); | |
int hes=yil%12; | |
switch (hes) | |
{ | |
case 0: | |
System.out.print("Çin Zodyağı Burcunuz : Maymun"); | |
break; | |
case 1: | |
System.out.print("Çin Zodyağı Burcunuz : Horoz"); | |
break; | |
case 2: | |
System.out.print("Çin Zodyağı Burcunuz : Köpek"); | |
break; | |
case 3: | |
System.out.print("Çin Zodyağı Burcunuz : Domuz"); | |
break; | |
case 4: | |
System.out.print("Çin Zodyağı Burcunuz : Fare"); | |
break; | |
case 5: | |
System.out.print("Çin Zodyağı Burcunuz : Öküz"); | |
break; | |
case 6: | |
System.out.print("Çin Zodyağı Burcunuz : Kaplan"); | |
break; | |
case 7: | |
System.out.print("Çin Zodyağı Burcunuz : Tavşan"); | |
break; | |
case 8: | |
System.out.print("Çin Zodyağı Burcunuz : Ejderha"); | |
break; | |
case 9: | |
System.out.print("Çin Zodyağı Burcunuz : Yılan"); | |
break; | |
case 10: | |
System.out.print("Çin Zodyağı Burcunuz : At"); | |
break; | |
case 11: | |
System.out.print("Çin Zodyağı Burcunuz : Koyun"); | |
break; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
eline sağlık