/* What declaration turns this loop into infinitive loop.*/
public class GhostOfLooper {
public static void main(String[] args) {
// Place your declaration for i here
while (i != 0)
i >>>= 1;
}
}
Solution:
// Place your declaration for i here
byte i = -1;