146k views
0 votes
Write a program using integers user_num and x as input, and output user_num divided by x three times. Ex: If the input is: 2000 2 Then the output is: 1000 500 250

User Khartnett
by
6.6k points

2 Answers

4 votes

Answer:

user_num = int(input("Number: "))

x = int(input("x: "))

for i in range(1,4):

user_num = user_num/x

print(user_num," ")

Step-by-step explanation:

User Kaylah
by
6.0k points
7 votes

Answer:

Soory! I can't tell please tell clearly

User Cookster
by
6.4k points