With this code I get the error:
error: class expected
import javax.swing.JOptionPane;
public class MenorIdade {
public static void main(String[] args) {
String[] nomes = new String[5];
int [] idades = new int[5];
int maisJovem = 0;
for (int i = 0; i <= 4; i++) {
nomes[i] = JOptionPane.showInputDialog("Informe o nome");
idades[i] = int.parseInt(JOptionByte.showInputDialog("Informe a idade"));
if (idades[i] < idades[maisJovem]) {
maisJovem = i;
}
}
JOptionPane.showMessageDialog(null, nomes[maisJovem] + " é mais jovem e tem " + idades[maisJovem] + " anos.");
}
}