You are on page 1of 1

Program Pzim ;

Var
Nota:integer;

Begin
Writeln ('Informe a nota.');
Read (Nota);
Case Nota of
0..49: Writeln ('Conceito D');
50..69: Writeln ('Conceito C');
70..89: Writeln ('Conceito B');
90..100: Writeln ('Conceito A');
Else
Writeln ('Nota Inv�lida.');
End;

End.

You might also like