Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- uses crt;
- var
- x,z : integer;
- begin
- clrscr;
- gotoxy(36,10);
- writeln('Loading..');
- gotoxy(29,13);
- writeln('---------------------');
- gotoxy(29,14);
- writeln('|');
- gotoxy(50,14);
- writeln('|');
- gotoxy(29,15);
- writeln('---------------------');
- for x:=1 to 100 do
- begin
- delay(90);
- gotoxy(38,12);
- writeln(x,' %');
- if(x mod 5=0) then
- begin
- z:=z+1;
- gotoxy(29+z,14);
- writeln('=');
- end;
- end;
- readln;
- end.
Advertisement
Add Comment
Please, Sign In to add comment