You should always have a backup of it
Btw, have you listened to that "Ć" letter how is pronouced? When I sent yesterday?
resend it in some format I can read plz
Anyone online with some Java knowledge? :) @here
@Bread <- former J2EE dev
I‘m already in bed though. I can only help by writing 🙈
Math.pow(x,y) is supposed to calculate the power of x and y
However in combination with mod (%) things get really messed up
```java
public void test() {
double c;
c=Math.pow(8,13) % 77;
System.out.println("Result should actually be 45. However it is "+c);
}
```