{}
run-icon
Main.java
// Online Java Compiler // Use this editor to write, compile and run your Java code online class Main { public static void main(String[] args) { int a=5; String sonuc=""; switch(a%2) { case 0 : sonuc="sayi çifttir"; break; case 1 : sonuc="sayi tektir"; break; default : sonuc="hatalı"; break; } System.out.println(sonuc); } }
Output