Arithmetic/Integer: Difference between revisions

Content added Content deleted
m (→‎{{header|Wren}}: Changed to Wren S/H)
imported>Arakov
 
Line 1,790: Line 1,790:


=={{header|Elena}}==
=={{header|Elena}}==
ELENA 4.x :
ELENA 6.x :
<syntaxhighlight lang="elena">import system'math;
<syntaxhighlight lang="elena">import system'math;
import extensions;
import extensions;
Line 1,803: Line 1,803:
console.printLine(a," * ",b," = ",a * b);
console.printLine(a," * ",b," = ",a * b);
console.printLine(a," / ",b," = ",a / b); // truncates towards 0
console.printLine(a," / ",b," = ",a / b); // truncates towards 0
console.printLine(a," % ",b," = ",a.mod:b); // matches sign of first operand
console.printLine(a," % ",b," = ",a.mod(b)); // matches sign of first operand
console.printLine(a," ^ ",b," = ",a ^ b);
console.printLine(a," ^ ",b," = ",a ^ b);
}</syntaxhighlight>
}</syntaxhighlight>