I needed help putting the smallest and largest method to be "heard" in the main method. The logic of the program is to show the user the highest and lowest value of a vector .
CODE:
import java.util.Scanner;
public class L6ex3 {
public static void main(String[] args) {
Scanner e = new Scanner (System.in);
int quantidade = 0;
System.out.print("Quantos alunos serão cadastradas as idades?");
quantidade = e.nextInt();
int v[] = new int [quantidade];
System.out.print ("Digite as idades");
for (int i=0; i<quantidade; i++)
v[i] =e.nextInt();
}
public int menorValor (int v[]){
int menor =0;
for (int i=0; i<v.length;i++)
menor = v[i];
for (int i=0; i<v.length; i++)
if (v[i]<menor)
menor =v[i];
return menor;
}
public int maior (int v[]){
int maior=0;
for (int i=0; i<v.length;i++)
if (v[i]> maior)
maior = v[i];
return maior;
}
}