Advertisement
Gromov

Untitled

Nov 2nd, 2018
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. program mass;
  2. Uses CRT;
  3. var
  4. r,k:integer;
  5.  
  6.  
  7.  
  8. begin
  9. for k:=5 to 70 do
  10. begin
  11. cursoroff;
  12. Textcolor(15);
  13. gotoxy(k,10);
  14. writeln('*');
  15. Delay(50);
  16. Textcolor(0);
  17. gotoxy(k,10);
  18. writeln(' ');
  19. end;
  20. gotoxy(k,10);
  21. textcolor(15);
  22. writeln('*');
  23. Readln;
  24. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement