RosettaCodeData/Task/Arithmetic-Integer/TI-89-BASIC/arithmetic-integer.ti-89
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

7 lines
212 B
Text

Local a, b
Prompt a, b
Disp "Sum: " & string(a + b)
Disp "Difference: " & string(a - b)
Disp "Product: " & string(a * b)
Disp "Integer quotient: " & string(intDiv(a, b))
Disp "Remainder: " & string(remain(a, b))