+ 1
Quotient & Remainder
how do you translate quotient & remainder to german? remainder does not make any sense to me
3 Antworten
+ 2
17 ÷ 3 = (3*5 + 2) / 3
here,
5 is quotient
2 is remainder.
In Python3
remainder is expressed:
17 % 3 = 2
print (17 % 3) = 2 ,it means if we divide number 17 by 3, remainder is 2
+ 3
32 / 9 = 3 Rest 5
5 ist der Rest und 3 ist der Quotient.
**
I used Google Translate as I dont speak German.
**
+ 2
We use a remainder operation to determine if the number is odd, and we use the quotient to determine the result of one division. By example: 7/3 =2 quotient and 7%3 = 1 remainder