+ 4
Can someone help me understand quotient and remainder?
4 Answers
+ 6
Please do a search using the search bar and you will find answers.
+ 6
5 Ă· 4 = 1 remainder 1
5 is the dividend,
4 is the divisor,
1 is the quotient,
1 is the remainder.
+ 1
7Ă·2
here it get 3 time 2Ă3=6
here 3 is quotient
7-6 = 1
here 1 is remainder
0
number=888
hours=60
print(int(number / hours))
print(int(number % hours) )
>>14
>>48