// all even # from 0-10 class ForLoop1m { public static void main(String[] args) { for ( int count=2; count<10; count=count+2 ) System.out.println(count); } }