Advertisement
Guest User

Untitled

a guest
Jan 19th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. // Лаб 2 часть 3
  2. open System;
  3.  
  4. let function1(x: double, y: double) =
  5. printf "%f " ( sqrt( (pown (log( (cos(x + y) * cos(x + y)) / sin((x + y) * (x + y)) )) 2) + exp (x * x * y)))
  6.  
  7. printf "Введите x: "
  8. let x = Convert.ToDouble(Console.ReadLine());
  9. printf "Введите y: "
  10. let y = Convert.ToDouble(Console.ReadLine());
  11. function1(x, y)
  12.  
  13. Console.ReadLine();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement