Hacer un programa que registre alumno[x], nota1[x], nota2[x], nota3[x], nota4[x]donde va de 1 a 100. Se desea saber: a)Cual alumno tiene el mejor promedio b)Cuales son los 5 alumnos que tienen mejor nota2[x] c)Cuales son los 4 alumnos que tienen peor nota4[x] INICIO Dimensionar alumno[100], notas1[100], notas2[100], notas3[100], notas4[100] x=1 mientras x<=100 hacer leer alumno[x], nota1[x], nota2[x], nota3[x], nota4[x] x=x+1 fin_mientras //Solucion a la 1º Pregunta M=0 X=1 A=" " mientras x<=100 hacer P=(nota1[x], nota2[x], nota3[x], nota4[x])/4 Si P>M Entonces M=P A=Alumno[x] Fin_si x=x+1 Fin_mientras Escribe A,M //Solucion a la 2º Pregunta x=1 mientras x<=100 hacer y=x mientras y<=100 hacer si nota2[x]<=nota2[y] entonces T=alumno[x] alumno[x]=alumno[y] alumno[y]=T T=nota1[x] nota1[x]=nota1[y] nota1[y]=T T=nota2[x] nota2[x]=nota2[y] nota2[y]=T T=nota3[x] nota3[x]=nota3[y] nota3[y]=T T=nota4[x] nota4[x]=nota4[y] nota4[y]=T Fin_si y=y+1 fin_mientras x=x+1 fin_mientras //Publicacion x=1 mientras x<=5 hacer Escribe alunmo[x], nota2[x] x=x+1 fin_mientras //Solucion a la 3º Pregunta x=1 mientras x<= 100 hacer y=x mientras y<=100 hacer Si nota4[x]>nota4[y] entonces T=alumno[x] alumno[X]=alumno[y] alumno[y]=alumno[x] T=nota1[x] nota1[x]=nota1[y] nota1[y]=T T=nota2[x] nota2[x]=nota2[y] nota2[y]=T T=nota3[x] nota3[x]=nota3[y] nota3[y]=T T=nota4[x] nota4[x]=nota4[y] nota4[y]=T Fin_si Y=Y+1 fin_mientras x=x+1 fin_mientras //Publicacion x=1 mientras x<=4 hacer Escribir alumno[x], nota4[x] x=x+1 fin_mientras FIN AUTORES: MANUEL LUCERO GIL (5) KATHERINE EMPERATRIZ PEREZ POPUCHE(5) PAOLA SANDOVAL AHUMADA(5) CARMEN ROSA QUIÑONES DELGADO (5)