In my code I have :
this prints : dif=2
dif_1 = 0.0
why is this ?
int dif = platLevel; //get the diffeculty of the level
println("dif="+dif);
double dif_1 = 1/dif;
println("dif_1="+dif_1);
public void println(String text) {
System.out.println(text);
}

