Developed by frank vahid. 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).

Solved
Show answers

Ask an AI advisor a question