Advertisement
Guest User

Untitled

a guest
Jun 21st, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scilab 1.03 KB | None | 0 0
  1. var
  2. a:integer;
  3.  begin
  4.      clrscr;
  5.     for a:= 1 to 60 do
  6.  
  7.    begin
  8.     delay (25);
  9.     clrscr;
  10.     gotoxy (a,8);
  11.     writeln ('           *         ');
  12.      gotoxy (a,9);
  13.     writeln ('          _|_        ');
  14.     gotoxy (a,10);
  15.      writeln ('        _/   \_      ');
  16.      gotoxy (a,12);
  17.      writeln ('       /|     |\     ');
  18.      gotoxy (a,13);
  19.      writeln ('      / |_____| \    ');
  20.      gotoxy (a,14);
  21.      writeln ('     /  /|_|_|\  \   ');
  22.      gotoxy (a,15);
  23.      writeln ('    /__/       \__\  ');
  24.         end;
  25.      begin    
  26.      for a:= 60 to 1 do
  27.     delay (100);
  28.     clrscr;
  29.     gotoxy (a,8);
  30.     writeln ('           *         ');
  31.      gotoxy (a,9);
  32.     writeln ('          _|_        ');
  33.     gotoxy (a,10);
  34.      writeln ('        _/   \_      ');
  35.      gotoxy (a,12);
  36.      writeln ('       /|     |\     ');
  37.      gotoxy (a,13);
  38.      writeln ('      / |_____| \    ');
  39.      gotoxy (a,14);
  40.      writeln ('     /  /|_|_|\  \   ');
  41.      gotoxy (a,15);
  42.      writeln ('    /__/       \__\  ');
  43.                                 end;
  44.      end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement