Guest User

Untitled

a guest
Oct 22nd, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. fa = float(input("start: "))
  2. sinx = math.sin(fa)
  3. sin=round(sinx, 4)
  4. approx = math.fabs(sin - fa)
  5.  
  6. print(fa,"|", sin,"|", approx)
  7.  
  8. x=1
  9. while x < 10:
  10. print(print(fa, sin, approx))
  11. x=x+1
Add Comment
Please, Sign In to add comment