Sha256: 66d14ab297e7bd641aff33063327be72b2dc18e9bde37758a1e54f7a680f2975
Contents?: true
Size: 342 Bytes
Versions: 10
Compression:
Stored size: 342 Bytes
Contents
output = "Enter first integer:" first = input output = "Enter second integer:" second = input output = "sum = " first + second output = "diff = " first - second output = "prod = " first * second output = "quot = " (qout = first / second) output = "rem = " first - (qout * second) output = "expo = " first ** second end
Version data entries
10 entries across 7 versions & 1 rubygems