Advertisement
Guest User

DUnn GOffed

a guest
Apr 23rd, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. import math
  2. incremento = int(raw_input("ingrese valor de incremento: "))
  3. for i in range(10):
  4. a = math.sin(math.radians(i*incremento))
  5. print str(i*incremento)+ " grados : %.6f" % a
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement