class DoWhile{ public static void main(String[] args){ int x = 1; do{ System.out.println("Counting up to 100 - " + x + "."); x ++; } while(x<=100); } }