logo

Crowdly

Que va afficher le code suivant ? import java.util.ArrayList; import java.uti...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

Que va afficher le code suivant ?

import java.util.ArrayList;

import java.util.Collections;

public class Executable{

public static void main(String[] args){

ArrayList<Integer> liste = new ArrayList<>();

int compteur = 0;

for(int i = 1; i < 1000; i++){

for(int j = 0; j<10000000; j++){

compteur = (compteur + 1) % 7;

}

liste.add(i*3 + 200);

}

System.out.println(Collections.min(liste));

}

}

More questions like this

Want instant access to all verified answers on celene.univ-orleans.fr?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!