Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Practica3

program Practica3.1;
var
    nota:integer;
begin
    writeln ("Escriba tu nota");
    read(nota);
    if nota=20 write ("M. Honor");
    else
        if nota=19 or nota=18 write ("Sobresaliente");
        else
            if nota=17 or nota=16 write ("Notable");
            else
                if nota=15 or nota=14 wirte ("Aprobado");
                else write ("suspenso");
end.

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.