class NotasDeAluno { public static void main (String [] args) { float [] notasAluno; notasAluno = new float [3]; notasAluno [0] = 8.5F; notasAluno [1] = 7; notasAluno [2] = 10; System.out.println ("Notas do aluno:"); for (int i =0; i < notasAluno.length; i++) System.out.println (notasAluno [i]); } }