+ 1
No decimal
What should be the symbol to produce an output without decimal in division calculation.
2 Réponses
+ 6
use //
+ 5
example
20 // 6 = 3 not 3.3333...
if you use /
20 / 6 = 3.33333....
What should be the symbol to produce an output without decimal in division calculation.