::
Scrivere un programma Java per trovare elementi comuni da tre array ordinati (in ordine non decrescente).
ho pensato così ma ricevo errore su System.out.println…
int[] lista1 = {5,10,2,36,99};
int[] lista2 = {52,43,5,1,35};
int[] lista3 = {37,5,89,2,58};
for(int i=0; i<lista1.length; i++) {
for(int j= 0; j<lista2.length; j++) {
for(int z= 0; z<lista3.length; z++) {
if(i==j) {
if(j==z) {
System.out.println(lista1[i],lista2[j],lista3[z]);
}
}
}
Exception in thread “main” java.lang.Error: Unresolved compilation problem:
The method println(int) in the type PrintStream is not applicable for the arguments (int, int, int)
-
Questo topic è stato modificato 2 anni, 7 mesi fa da simone.