KedrikFeeD

программы с циклом FOR (Тема 7) (5)

Jun 29th, 2020
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.31 KB | None | 0 0
  1. Program TablZnach;
  2. const pi: real = 3.14159;
  3. var i: integer; x, y, k: real;
  4. begin
  5.  
  6. Writeln('X - количество радиан | Y = sin (x) | K = cos (x) ');
  7.  
  8.   for i := 25 downto 1 do begin
  9.     x := (i * pi /180);
  10.     y := sin(x);
  11.     k := cos(x) ;
  12.     writeln(X:6,  Y:12:2,  K:16:2)
  13.   end;
  14.  
  15. end.
Add Comment
Please, Sign In to add comment