Arithmetic/Integer: Difference between revisions

Content added Content deleted
(print operations as well as results)
(include the exponentiation operator)
Line 1,721: Line 1,721:
print(paste('a%/%b=', a%/%b))
print(paste('a%/%b=', a%/%b))
print(paste('a%%b=', a%%b))
print(paste('a%%b=', a%%b))
print(paste('a^b=', a^b))
</lang>
</lang>