Hello,
I am looking for a way or workaround to output a uncalculated fraction like
(1)with a neat fraction line in between.
With
Disp 2 * 3 / 4 * 2
it shows me the calculated result = 0.75.
With
Disp “2 * 3 / 4 * 2“
the program would do the thing I want but without a neat fraction line. I need that fraction line, because otherwise big fractions get confusing.
Do you maybe know a workaround for my problem?
My aim is to calculate formulas and output not only the results but also the calculation steps in between.
Thanks in advance.