This homework is based on Sections 6, 7 and 8 of the Textbook. Version updated on Sun 23 May 2021 04:15:21 PM PDT.
expr -> term { (+ | -) term }
term -> factor { (* | /) factor }
factor -> ( expr ) | number
number -> digit { digit }
digit -> 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9
What is confusing (possibly incorrect) in this proposed solution?