12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
P.J. Gawthrop July 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.3 1998/07/25 20:41:38 peterg
## Spaces between numbers
##
## Revision 1.2 1998/07/25 14:04:14 peterg
## Changed format
##
## Revision 1.1 1998/07/25 09:47:25 peterg
|
>
>
>
|
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
P.J. Gawthrop July 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.4 1998/11/26 13:31:30 peterg
## Put missing space after 2nd t
##
## Revision 1.3 1998/07/25 20:41:38 peterg
## Spaces between numbers
##
## Revision 1.2 1998/07/25 14:04:14 peterg
## Changed format
##
## Revision 1.1 1998/07/25 09:47:25 peterg
|
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
VAR
i : INTEGER;
BEGIN
write(t," ");
FOR i := 1 TO ny DO
write(y[i]," ");
write(" # ");
write(t," ");
FOR i := 1 TO nx DO
write(x[i]," ");
writeln;
END;
|
<
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
VAR
i : INTEGER;
BEGIN
write(t," ");
FOR i := 1 TO ny DO
write(y[i]," ");
write(t," ");
FOR i := 1 TO nx DO
write(x[i]," ");
writeln;
END;
|