home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
pascal
/
interpre
/
p_pascal
/
samples
/
sines.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
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.