language: Pascal (gpc) (gpc 20070904)
date: 104 days 5 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Program Project3;
 
 
Var     Nom,Carrera,Cuatr:string;
 
        Cal1,Cal2,Cal3,Prom:Real;
 
 
Begin
 
        Writeln('Escribe tu Promedio');
                Readln(Prom);
        Writeln('El Promedio Es:',Prom);
        If(Prom>=6)and(Prom<=7)Then
                Begin
                        Writeln('Tienes 30 por ciento');
                End;
        If(Prom>=8)and(Prom<=9)then
                Begin
                        Writeln('Bien');
                End;
        If(Prom=10)then
                Begin
                        Writeln('Excelente');
                End;
        Readln;
End.