-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVIRUSAS.PAS
68 lines (68 loc) · 1023 Bytes
/
VIRUSAS.PAS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
program virusas;
uses crt;
var x, y, d, k, l:integer;
a, b:string;
begin
b:='stop';
clrscr;
writeln('Hello! Meet File Killer Virus!');
delay(2000);
clrscr;
write('Installing virus components');
for k:=1 to 10 do
begin
write('.');
delay(200);
end;
writeln(' Complete');
write('Bye!');
delay(700);
repeat
clrscr;
randomize;
repeat
x:=random(78) + 1;
y:=random(28) + 1;
gotoxy(x,y);
write(' ');
textbackground(random(50));
sound(random(5000));
until KeyPressed;
nosound;
clrscr;
textbackground(black);
textcolor(white);
clrscr;
gotoxy(0,0);
write('Enter password: ');
readln(a);
if a<>b then
begin
write('Error');
delay(1000);
end;
until a=b;
write('Hello Sir Linas. Sorry for disturbing you!');
for d:=1 to 2 do
begin
sound(600);
delay(200);
nosound;
delay(100);
sound(600);
delay(200);
nosound;
delay(100);
sound(500);
delay(200);
nosound;
delay(100);
sound(400);
delay(200);
nosound;
delay(100);
end;
nosound;
delay(1000);
clrscr;
end.