Advertisement
Guest User

new

a guest
Apr 20th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. print("Programa da tabuada")
  2.  
  3. i  = int(input("Número inicial: "))
  4. f = int(input("Número final: "))
  5. c = 0
  6.  
  7. while c <= f:
  8.     print(i, '÷' , c , '=' ,i/c)
  9.     c = c + 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement