Answer to 2.3 Code practice: question 1 and 2?
Answers
Answered by
0
Answer:
I am not sure so I'm not able to give you the answer
Answered by
0
Answer:
x=float(input("Enter a positive number"))
y=float(input("Enter another positive number"))
q = int(x // y)
r = (x % y)
print(q)
print(r)
Explanation:
that should work... i just tested it right now
*for question 1*
Similar questions