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

8 lines
212 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04: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))