Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 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%
|
||||
PRINT "The integer quotient is " ; first% DIV second% " (rounds towards 0)"
|
||||
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