Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,9 @@
|
|||
input "Enter the first integer: "; first
|
||||
input "Enter the second integer: "; second
|
||||
|
||||
print "The sum is " ; first + second
|
||||
print "The difference is " ; first -second
|
||||
print "The product is " ; first *second
|
||||
if second <>0 then print "The integer quotient is " ; int( first /second); " (rounds towards 0)" else print "Division by zero not allowed."
|
||||
print "The remainder is " ; first MOD second; " (sign matches first operand)"
|
||||
print "The first raised to the power of the second is " ; first ^second
|
||||
Loading…
Add table
Add a link
Reference in a new issue