// // name: WhileDemo.java // // P.217 public class ForDemo { public static void main(String[] args) { int count; for (count=2011; count>=1991; count-=2) System.out.print(count + ", "); System.out.println("\n\nByebye"); } }