Skip to content

Instantly share code, notes, and snippets.

@smyy96
Created January 21, 2022 08:26
Show Gist options
  • Save smyy96/b0343ed171a8cde93d3b780c14009c8f to your computer and use it in GitHub Desktop.
Save smyy96/b0343ed171a8cde93d3b780c14009c8f to your computer and use it in GitHub Desktop.
Patika Java 101 - Çin Zodyağı Hesaplama
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;
}
}
}
@farukomer58000
Copy link

eline sağlık

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment