/* SlowCounter.java David G. Klick October 1, 2007 CIS 111 Demonstrates simple counting loop and delay. This program was created due to a class request. */ public class SlowCounter extends CIS111App { public static void main(String[] args) { int from; int to; int ctr; double seconds; println("This program counts from one number to another.\n"); from = getInt("What number would you like to start at? "); to = getInt("What number would you like to count to? "); seconds = getDouble("How many seconds would you like to delay between each number? "); for (ctr=from; ctr<=to; ctr++) { print("\r" + ctr); if (ctr