+ 2
How to solve 20//6?
I don't know how to solve it and I can't understand it
4 Answers
+ 11
// stands for division
integer//integer gives an integer
20/6 = 3.3bar , following the above written text ... 20//6 will be equal to 3
+ 5
It gives Integer value or full value, no fractional value include.
It is expressed by two forward slash ( //).
If we divide 5 by 2 and count integer as quotient then result is 2, .5 is omitted, here remainder value not counts,only integer or full value is count as quotient.
It's division(floor) operator. It rounds off the value to the nearest whole number.
20//6 = 3.333...
Now 3.333... rounds off to 3, so 3 is the answer.
Example:
5//2=2
9//7=1
15//4=3
19//8=2