What is wrong?

import java.io.* ;

public class Avaragerr {

public static void main(String args[]) throws IOException {

BufferedReader xx= new BufferedReader(new InputStreamReader(System.in));

System.out.println("Birinci Sayiyi girin(x)");

String oku= xx.readLine();

System.out.println("Ikinci Sayiyi girin(y)");

String oku2= xx.readLine();

int x = Integer.parseInt(oku);

int y = Integer.parseInt(oku2);

do {

System.out.println("1.Toplama\n2.Cikarma\n3.Carpma\n4.Bolme");

switch(int z) {

case 1: Topla(x,y); break;

case 2: Cikar(x,y); break;

case 3: Carp(x,y);break;

case 4: Bol(x,y);break;

default:

System.out.println("Yanlis Secim!");

}

} while(z>0&&z<5);

}

public static double Topla(int x, int y) {

return (x+y);

}

public static double Cikar(int x, int y) {

return (x-y);

}

public static double Carp(int x, int y) {

return (x*y);

}

public static double Bol(int x, int y) {

return(x/y);

}

}

[1103 byte] By [JPax_Codesa] at [2007-10-2 17:27:42]
# 1
A meaningless subject is bad. Not using the code is wrong.
BIJ001a at 2007-7-13 18:44:15 > top of Java-index,Developer Tools,Java Compiler...
# 2
Not using the code tag is wrong.The compiler issues a more or less meaningful error message with the line number. Ignoring this information is wrong .
BIJ001a at 2007-7-13 18:44:15 > top of Java-index,Developer Tools,Java Compiler...
# 3
I did it. OK. thanks :|)
JPax_Codesa at 2007-7-13 18:44:15 > top of Java-index,Developer Tools,Java Compiler...