Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. var
  2. x, y, a, F, t: real;
  3. x1, x2, x3: real;
  4. begin
  5. a := exp(1.98);
  6. x1 := 25/57.29;
  7. x2 := 6/3437.75;
  8. x3 := 18/206264.99;
  9. x := abs(ln(sin(x1 + x2 + x3)/ cos(x1 + x2 + x3)));writeln('x = ',x);
  10. t := (a-x);writeln('t = ',t);
  11. if t < 0 then y := 1/(a+x);
  12. if (x >= 1) and (x < 9) and (t >= 0) then y := 16.5*x+9*(x*x)-1.25*(x*x*x);
  13. if (x < 1) and (t >= 0) then y := 0;
  14. if (x >= 9) and (t >= 0) then y := a-x;
  15.  
  16. writeln('y = ',y);
  17. F := abs((y+a+x)/(a*x*y));
  18. writeln('F = ',F);
  19. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement