Sha256: 0286393bb7a14185a87ab81af4a3a3a1f4341f3aafe42f0691e8044421ec2c43
Contents?: true
Size: 294 Bytes
Versions: 10
Compression:
Stored size: 294 Bytes
Contents
input "1st integer: "; i1 input "2nd integer: "; i2 print " Sum"; i1 + i2 print " Diff"; i1 - i2 print " Product"; i1 * i2 if i2 <>0 then print " Quotent "; int( i1 / i2); else print "Cannot divide by zero." print "Remainder"; i1 MOD i2 print "1st raised to power of 2nd"; i1 ^ i2
Version data entries
10 entries across 7 versions & 1 rubygems