-
Notifications
You must be signed in to change notification settings - Fork 0
/
RANDOM.PAS
54 lines (51 loc) · 1.21 KB
/
RANDOM.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
{ @author: Sylvain Maltais (support@gladir.com)
@created: 2024
@website(https://www.gladir.com/xenix-0)
@abstract(Target: Turbo Pascal 7, Free Pascal 3.2)
}
Program _RANDOM;
Var
Silence:Boolean;
R,I,Scale:Integer;
Err:Word;
BEGIN
Randomize;
If(ParamStr(1)='/?')or(ParamStr(1)='--help')or(ParamStr(1)='-h')or
(ParamStr(1)='/h')or(ParamStr(1)='/H')Then Begin
WriteLn('RANDOM : Cette commande permet de g‚n‚rer un nombre al‚atoire.');
WriteLn;
WriteLn('Syntaxe : RANDOM [-s] [scale]');
WriteLn;
WriteLn(' -s Indique qu''il ne faut afficher le nombre al‚atoire');
WriteLn(' scale Indique la limite sup‚rieur de l''intervalle du nombre al‚atoire');
End
Else
If ParamCount>0 Then Begin
Silence:=False;
Scale:=2;
For I:=1 to ParamCount do Begin
If ParamStr(I)='-s'Then Silence:=True
Else
Begin
Val(ParamStr(I),Scale,Err);
If Err>0 Then Begin
WriteLn('chelle invalide !');
Halt(0);
End;
If(Scale<1)or(Scale>255)Then Begin
WriteLn('La valeur de l''‚chelle est en dehors de l''intervalle');
Halt(0);
End;
End;
End;
R:=Random(Scale);
If Not(Silence)Then WriteLn(R);
Halt(R);
End
Else
Begin
R:=Random(2);
WriteLn(R);
Halt(R);
End;
END.