I found myself such a cycle to translate into B4X. And I can't understand what the final condition is for which the cycle stops. Usually it's a boolean condition now I find the negation of an integer, so what does that mean?
PS the problem is that the condition is not a boolean and I don't understand how it is satisfied
Java:
int i = 0;
for (; !i; i = 0 + i + 1) {
System.out.println(i);
// other
}
PS the problem is that the condition is not a boolean and I don't understand how it is satisfied
Last edited: