public static void main(String[] args) { Scanner termInput = new Scanner(System.in); System.out.println("This is Java") ; System.out.println("Type in a small integer"); int yourChoice = termInput.nextInt() ; for (int n = yourChoice; n>0; --n) { System.out.printf("%4d\n", n) ; } System.out.println("Blastoff!") ; }