Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
pascal/TAN-1.PAS
2001-11-30 12:14:44 +01:00

13 lines
218 B
Plaintext

program test;
var s,t,u,a,v: real;
begin
a := Pi;
t := sin(a);
s := cos(a);
u := t/s;
v := t*360;
WriteLn('Wert: ',a:8:5,' sin: ',t:8:5,' cos: ',s:8:5,' tan: ',u:8:5,' v: ',v:8:5);
end.