// CountDownBy7s Example // Count from 1000 to 1 backwards by sevens. public class CountDownBy7s { public static void main(String[ ] args) { for(int n = 1000; n >= 1; n -= 7) { System.out.println(n); } } }