RosettaCodeData/Task/Arithmetic-Integer/TI-89-BASIC/arithmetic-integer.ti-89

8 lines
212 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
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))