1)
A + B*C - 5
pre-fixed
-*+ ABC5post-fixed
ABC*+5-
2)
A/(B + C/D)
pre-fixed
/+/ ABCDpost-fixed
A/CD/B+
3)
(-B+sqrt(B**2-4*A*C))/(2*A)
pre-fixed
*/**-**sqrt+-BB24AC2Apost-fixed
B-B2**4AC**-sqrt+2A*/
Is correct ?
A + B*C - 5
-*+ ABC5post-fixed
ABC*+5-
A/(B + C/D)
/+/ ABCDpost-fixed
A/CD/B+
(-B+sqrt(B**2-4*A*C))/(2*A)
*/**-**sqrt+-BB24AC2Apost-fixed
B-B2**4AC**-sqrt+2A*/
|
|
|
WingedPanther said:
WingedPanther said:
WingedPanther said: