// all odd # from 100-120 class ForLoop1mm { public static void main(String[] args) { for ( int count=101; count<120; count=count+2 ) System.out.println(count); } }