Miles Chapter 2 on Simple Data Processing is also well written. Start by reading through section 2.3.1, ending on page 38. As you read it, note the specific comments below. The chapter does not mention the Mono tool, csharp, which makes it very easy to test simple data operations.
The precedence table is very misleading: It does not distinguish operands with the SAME precedence: Operators * and /, have the same precedence. The binary operations + and - have the same precedence.
This is the same precedence as in normal math. See the related section added below about another useful operator related to division, the remainder operator, %. It has the same precedence as * and /.