// Page 083 class Prog_6_10 { public static void main(String[] args) { for ( int count = 4; count > 0; count -- ) System.out.println(count); } }