BSD 2 development
[unix-history] / src / pascal / tests / t17.p
CommitLineData
bb56dd76
BJ
1program graph1(output);
2const
3 d = 0.0625;
4 s = 32;
5 h = 34;
6 c = 6.28318;
7 lim = 32;
8var
9 x,y: real;
10 i,n: integer;
11
12begin
13 for i := 0 to lim do
14 begin
15 x := d*i;
16 y := exp(-x)*sin(c*x);
17 n := round(s*y) + h;
18 writeln('*':n);
19 end
20end.