home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
PASCAL
/
P_PASCAL.ZIP
/
SAMPLES
/
SINES.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1989-04-22
|
235 b
|
16 lines
(*$c+*)
program sines;
var i, j, k : real;
begin
i := 0.0;
while i < 10.0 do
begin
k := sin(i) + 1.1;
j := 0.0;
while j < k do
begin write('x'); j := j + 0.1 end;
writeln;
i := i + 0.35
end
end.