class InitDemo{
      public static void main(String args[]) {
	    int x;
	    try{
	      x = 6/2; 
	    }
	    catch(ArithmeticException exc){
		  System.out.println("Sıfırıa Bölme Hatası");
		  System.exit(1);
	    }
	   System.out.println(x); // Hata mesaı: "variable x might not have been initialized"
    }
}

