parser-series icon indicating copy to clipboard operation
parser-series copied to clipboard

2 * 1 + 2 + 1 is getting evaluated to 2 * ( 1 + ( 2 + 1 ) )

Open nagarajRPoojari opened this issue 7 months ago • 0 comments

simple BODMAS rule not supported, ex. 2 * 1 + 2 + 1 should be evaluated to 5 but it gets evaluated to 8 here.

nagarajRPoojari avatar Sep 13 '25 09:09 nagarajRPoojari