Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. elif l == "cos":
  2. x = int(input("Radian: "))
  3. print(mt.cos((x)))
  4. elif l == "sin":
  5. x = int(input("Radian: "))
  6. print(mt.sin((x)))
  7. elif l == "tan":
  8. x = int(input("Radian: "))
  9. print(mt.tan((x)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement