0
The program is working perfectly. My doubt is only about this algorithm, I can not understand how this variable (MA) can show me the highest grade only with the attribution MA <- A. If someone can clarify this question I thank.
Algoritmo "ContadorMaiorNota"
Var
Q, contador: Inteiro
N, MAIOR: Real
A, MA: Caractere
Inicio
contador <- 1
Escreval("------------------------")
Escreval(" ESCOLA ESTUDIOSOS ")
Escreval("------------------------")
Escreval("Quanto alunos tem na turma?")
Leia(Q)
Enquanto (contador <= Q) faca
Escreval("Aluno ", contador)
Escreval("Nome do aluno: ")
Leia(A)
Escreval("Nota do ", A,":")
Leia(N)
contador <- contador +1
Se (N > MAIOR) entao
MAIOR <- N
MA <- A
FimSe
FimEnquanto
Escreval("O maior aproveitamento foi o de ",MA," com a nota", MAIOR)
FimAlgoritmo
Thank you! It helped a lot in understanding the conditional that I had not attacked me before.
– Stheffany Cruvinel