Skip to content

Latest commit

 

History

History
47 lines (28 loc) · 713 Bytes

File metadata and controls

47 lines (28 loc) · 713 Bytes

Quotient

Quotient(m, n)

computes the integer quotient of m and n.

See

Examples

>> Quotient(23, 7)
3

Infinite expression Quotient(13, 0) encountered.

>> Quotient(13, 0)
ComplexInfinity

>> Quotient(-17, 7)
-3
 
>> Quotient(-17, -4)
4
 
>> Quotient(19, -4)
-5

Implementation status

  • ✅ - full supported

Github