// Page 083 // out all even from 2 to 10? class OutEven2_10 { public static void main(String[] args) { for ( int count = 2; count <= 10; count+=2 ) System.out.println(count); } }