for( int i = min; i <max; i++) { System.out.println(i); } If min and max are arbitrary integers, what gives the same result? () 
A、 init i = min;while( i < max ){}
B、 int i = min; do system.out.println(i++); } while( i< max );
C、 for (int i=min; i
D、