Jump to content

Arithmetic/Integer: Difference between revisions

no edit summary
No edit summary
Line 2,807:
power -17 ** 4 ───► 83521
</pre>
 
=={{header|Ring}}==
<lang ring>
func Test a,b
see "a+b" + ( a + b ) + nl
see "a-b" + ( a - b ) + nl
see "a*b" + ( a * b ) + nl
// The quotient isn't integer, so we use the Ceil() function, which truncates it downward.
see "a/b" + Ceil( a / b ) + nl
// Remainder:
see "a%b" + ( a % b ) + nl
see "a**b" + pow(a,b ) + nl
return
</lang>
 
=={{header|Ruby}}==
Cookies help us deliver our services. By using our services, you agree to our use of cookies.