Arithmetic/Integer: Difference between revisions

Line 864:
b = Val(Input())
 
PrintN("a + b =Sum: " + Str(a + b))
PrintN("a - b =Difference: " + Str(a - b))
PrintN("a * b =Product: " + Str(a * b))
PrintN("a / b =Quotient: " + Str(a / b))
PrintN("aQuotient, %explicitly b =rounded: " + Str(a % b))
PrintN("a POW b =Remainder: " + Str(Pow(a, b)))
 
CloseConsole()</lang>
Anonymous user