Considere a classe Java a seguir: public class Prova { pu...
Próximas questões
Com base no mesmo assunto
Ano: 2015
Banca:
FCC
Órgão:
TRT - 9ª REGIÃO (PR)
Prova:
FCC - 2015 - TRT - 9ª REGIÃO (PR) - Analista Judiciário - Área Apoio Especializado - Tecnologia da Informação |
Q585300
Programação
Considere a classe Java a seguir:
public class Prova {
public static void main(String[] args) {
int valor = calcula(new int[]{6, 8, 9, 2}, new int[]{6, 2, 4});
System.out.print(valor);
}
public static int calcula(int[] v1, int[] v2) {
int t;
if (v1.length > v2.length) {
t = v1.length;
} else {
t = v2.length;
}
int r = 0;
for (int i = 0; i < t; i++) {
r += v1[i] * v2[i];
}
return r;
}
}
Ao compilar e executar esta classe
public class Prova {
public static void main(String[] args) {
int valor = calcula(new int[]{6, 8, 9, 2}, new int[]{6, 2, 4});
System.out.print(valor);
}
public static int calcula(int[] v1, int[] v2) {
int t;
if (v1.length > v2.length) {
t = v1.length;
} else {
t = v2.length;
}
int r = 0;
for (int i = 0; i < t; i++) {
r += v1[i] * v2[i];
}
return r;
}
}
Ao compilar e executar esta classe