Advertisement
Alex_Fomin

Untitled

Dec 24th, 2015
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.35 KB | None | 0 0
  1. begin
  2.   var x := ReadLnReal('Введите число X:');
  3.   var y := ReadLnReal('Введите число Y:');
  4.   var z := ReadLnReal('Введите число Z:');
  5.   var a := (Sqrt(Abs(x - 1)) - Sqrt(Abs(y))) / (1 + Sqr(x) / 2 + Sqr(y) / 4);
  6.   var b := x * (ArcTan(z) + Exp(1));
  7.   WriteLnFormat('Результат: A={0:f5}; B={1:f5}', a, b);
  8. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement