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