Jump to content

Infix notation

From Simple English Wikipedia, the free encyclopedia
Revision as of 08:37, 12 May 2023 by Th0bse (talk | changes) (Broken up longer sentences into smaller ones to avoid complicated sentence structure that could be confusing. Tried to explain some more technical terms in simpler words.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Prefix notation
Infix notation
Postfix notation

Infix notation is the commonly used arithmetic and logical formula notation. The operators are written between the operands they act on (e.g. 2 + 2). It is not as simple to parse by computer as prefix notation ( e.g. + 2 2 ) or postfix notation ( e.g. 2 2 + ), but many programming languages use it due to its familiarity.

In infix notation, parentheses are necessary to show the order of the operations. In prefix or postfix notation no parenthesis are needed.

When there are no parentheses, there are rules that show the order of operations. The rules are explained in the order of operations article.

[change | change source]

Other websites

[change | change source]