-->
-->
Ecrire un programme Pascal qui permet d’afficher une
horloge numérique.
program horloge;
uses wincrt, windos;
var h,m,s,c: word;
begin
repeat; gotoxy
(37,12);
gettime (h,m,s,c);
writeln (h:2,':',m:2,':',s:2);
until 1=2
end.