// "Move condition to loop" "true" class Main { public static void main(String[] args) { int i = 0; while (i < 12) { i++; } } }