subject

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
Note: In Python 3, Integer division discards fractions. Ex 6 // 4 is 1 (the 0.5 is discarded)
LAB ACTIVITY: LAB: Divide by x
main. py Load default template
1 user_num int(input)
2 Xintinput)
3 for 1 in range (3)
4 user_num. user_num//
5 print(user_num)
6
1. Compare output ^
Output is nearly correct, but whitespace differs. See highlights below
Input
2000
2
Your output
1000
500
250
Expected output 1000|50|250
2. Compare output ^
Output is nearly correct, but whitespace differs. See highlights below.
Input
100
4
Your output
25
6
1
Expected output
25 |6|1|
3. Compare output ^
Output is nearly correct, but whitespace differs. See highlights below.
Input
8000
-2
Your output
-4000
2000
-1000
Expected output
- 4000|2000|-1000

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 21:30
What elements related to the release and success of the nes console do you see in modern console releases? what elements are no longer relevant to modern console gaming?
Answers: 3
question
Computers and Technology, 22.06.2019 21:30
After you clean an engine with hot water spray, it seems to stall; when it doesn't stall, it's idling noisily. technician a says to check for loose bolts on the flex plate near the torque converter. technician b says to wipe down the spark plug wires and the distributor cap. who is correct? a. technician a b. both technicians a and b c. technician b
Answers: 1
question
Computers and Technology, 23.06.2019 00:20
Ihave been given the number of guns per 100, and the total firearm-related deaths per 100,000. i have to find the actual number of guns per country and actual number of gun-related deaths. if somebody could show me how to do 1 question, i can finish the rest, i am just confused. tia
Answers: 3
question
Computers and Technology, 23.06.2019 01:50
Create a class named majors that includes an enumeration for the six majors offered by a college as follows: acc, chem, cis, eng, his, phys. display the enumeration values for the user, then prompt the user to enter a major. display the college division in which the major falls. acc and cis are in the business division, chem and phys are in the science division, and eng and his are in the humanities division. save the file as majors.java.
Answers: 2
You know the right answer?
Write a program using integers user_num and x as input, and output user_num divided by x three times...
Questions
question
World Languages, 05.10.2019 06:00
Questions on the website: 13722363