13 function GetTiempo( h1, h2: HORA ): longint;
20 if h1.h <> h2.h then { pone al menor como h2 y al mayor como h1 }
29 else if h1.m <> h2.m then
38 else if h1.s <> h2.s then
47 else if h1.c <> h2.c then
54 t := ( ( ( h1.h - h2.h ) * 60 + ( h1.m - h2.m ) ) * 60 + ( h1.s - h2.s ) ) * 100 + ( h1.c - h2.c );
56 end; { function GetTiempo }
59 function GetRNDLetra( min, max: char ): char;
62 i := ord( max ) - ord( min ) + 1;
64 GetRNDLetra := chr( random( i ) + ord( min ) );
77 h1.h := 10; h1.m := 10; h1.s := 10; h1.c := 10;
78 h2.h := 10; h2.m := 10; h2.s := 9; h2.c := 13;
79 t := GetTiempo( h2, h1 );
81 writeln( 'Numero: ', random( 10 ) );
82 writeln( GetRNDLetra( 'A', 'Z' ) );
89 if 'LUCA' > 'LUCALAMIDAS' then
90 writeln( '''LUCA'' > ''LUCALAMIDAS''' )
92 writeln( '''LUCA'' < ''LUCALAMIDAS''' );