int i=-1 do { if (i == -1) { System.out.print("i is negative!"); } else { System.out.print("i is >= zero!"); } i = i + 1; } while (i < 100);