class DoTest { public static void main (String arguments[]) { int x = 1; do { System.out.println("Looping, round " + x); x++; } while (x <= 10); } }