Java – for ciklus

package peldaforciklus;
public class PeldaForCiklus {
    public static void main(String[] args) {
        int[] t1 = {3, 56, 23, 1, 98, 0, 17};
        int t2[] = {-9, 11, 6, 8, -2};
        
        // 1. példa
        for (int i=0, j=0; i<Math.min(t1.length, t2.length); i++, j++) {
            // Itt csinálunk valamit. :-)
        }
        
        // 2. példa
        for(int i=0, j=0; i<10 && j<3; i++, j++){
            // Itt csinálunk valamit. :-)
        }
    }   
}