-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
78 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
//Java ile kullanıcıdan doğum tarihini alıp Çin Zodyağı değerini hesaplayan program | ||
import java.util.Scanner; | ||
public class chineZodyak{ | ||
public static void main(String[] args){ | ||
Scanner input=new Scanner(System.in); | ||
System.out.print( "Dogum yılınızı giriniz:" ); | ||
int year=input.nextInt(); | ||
int kalan=year%12; | ||
String burc; | ||
switch(kalan){ | ||
case 0: | ||
burc="Maymun"; | ||
System.out.println( "Çin Zodyağı Burcunuz :"+ burc ); | ||
break; | ||
case 1: | ||
burc="Horoz"; | ||
System.out.println( "Çin Zodyağı Burcunuz :"+ burc ); | ||
break; | ||
case 2: | ||
burc="Köpek"; | ||
System.out.println( "Çin Zodyağı Burcunuz :"+ burc ); | ||
break; | ||
|
||
case 3: | ||
burc="Domuz"; | ||
System.out.println( "Çin Zodyağı Burcunuz :"+ burc ); | ||
break; | ||
|
||
case 4: | ||
burc="Fare"; | ||
System.out.println( "Çin Zodyağı Burcunuz :"+ burc ); | ||
break; | ||
|
||
case 5: | ||
burc="Öküz"; | ||
System.out.println( "Çin Zodyağı Burcunuz :"+ burc ); | ||
break; | ||
|
||
case 6: | ||
burc="Kaplan"; | ||
System.out.println( "Çin Zodyağı Burcunuz :"+ burc ); | ||
|
||
break; | ||
case 7: | ||
burc="Tavşan"; | ||
System.out.println( "Çin Zodyağı Burcunuz :"+ burc ); | ||
|
||
break; | ||
case 8: | ||
burc="Ejderha"; | ||
System.out.println( "Çin Zodyağı Burcunuz :"+ burc ); | ||
break; | ||
|
||
case 9: | ||
burc="Yılan"; | ||
System.out.println( "Çin Zodyağı Burcunuz :"+ burc ); | ||
break; | ||
|
||
case 10: | ||
burc="At"; | ||
System.out.println( "Çin Zodyağı Burcunuz :"+ burc ); | ||
break; | ||
|
||
case 11: | ||
burc="Koyun"; | ||
System.out.println( "Çin Zodyağı Burcunuz :"+ burc ); | ||
break; | ||
|
||
|
||
default: | ||
System.out.print( "Veri girişi yanlış" ); | ||
break; | ||
|
||
} | ||
|
||
|
||
} | ||
} |