2.16 LAB: Variables/Assignments: Divide by x (LT-V-SP24)
Write a program using integers userNum and x as input.
Output userNum divided by x.
Then divide that number by x, and output it.
Then divide that number by x and output it.
Finally, divide that number by x and output it.
Ex: If the input is:
20002
the output is:
1000, 500, 250, 125
Note: In Coral, integer division discards any fractional part of the answer (aka, discards the decimal point and anything after the decimal point). For example: (6)/(4) is 1 (the 0.5 is discarded).
528942.3925218.qx3zqy7
My library > CSC 120-0001: Computing Fundamentals T home > zyBooks 2.16: LAB: Variables/Assignments: Divide by x (LT-V-SP24)
zyBooks catalog ? Help/FAQ
Dogus Metin
2.16 LAB: Variables/Assignments: Divide by x (LT-V-SP24)
Write a program using integers userNum and x as input.
Output userNum divided by x. Then divide that number by x, and output it. Then divide that number by x and output it. Finally, divide that number by x and output it.
Ex: If the input is:
20002
the output is:
1000, 500, 250, 125
Note: In Coral, integer division discards any fractional part of the answer (aka, discards the decimal point and anything after the decimal point). For example: 6 / 4 is 1 (the 0.5 is discarded)
528942.3925218.cx3zqy7
LAB ACTIVITY
2.16.1: LAB: Variables/Assignments: Divide by x (LT-V-SP24)