g Write a program using integers usernum and x as input, and output usernum divided by x four times. For example, if the input is: 2000 2 where user_num = 2000 and x = 2, then the output must be: 1000 500 250 125 Note: all the values must be printed on the same line. Also, recall that in Python 3, integer division discards fractions. Ex: 6 / / 4 is 1 (the 0.5 is discarded).
+3
Answers (1)
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “g Write a program using integers usernum and x as input, and output usernum divided by x four times. For example, if the input is: 2000 2 ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Home » Computers & Technology » g Write a program using integers usernum and x as input, and output usernum divided by x four times. For example, if the input is: 2000 2 where user_num = 2000 and x =