Arithmetic/Integer: Difference between revisions

no edit summary
No edit summary
Line 63:
WriteF('A mod B =\d\n', Mod(a,b))
ENDPROC</lang>
 
=={{header|AutoHotkey}}==
The quotient rounds towards 0 if both inputs are integers or towards negative infinity if either input is floating point. The sign of the remainder is always the same as the sign of the first parameter.
<lang autohotkey>Gui, Add, Edit, va, 5
Gui, Add, Edit, vb, -3
Gui, Add, Button, Default, Compute
Gui, Show
return
 
ButtonCompute:
Gui, Submit
MsgBox,%
(Join`s"`n"
a "+" b " = " a+b
a "-" b " = " a-b
a "*" b " = " a*b
a "//" b " = " a//b " remainder " Mod(a,b)
a "**" b " = " a**b
)
GuiClose:
ExitApp</lang>
 
=={{header|AWK}}==
Anonymous user