Рет қаралды 29,425
This is the eighth in a series of computer science video tutorials for beginners, about programming with Visual Basic.NET (VB.NET) in Visual Studio. In this lesson, you will learn how to write complex arithmetic expressions that perform calculations in your code. A complex arithmetic expression is an expression that involves more than one arithmetic operator. You also will learn how to control the order of operations using brackets, also known as parentheses. You will see that the order of operations in a complex expression is given by the acronyms BODMAS (Brackets Order Division Multiplication Addition Subtraction) and PEMDAS, Please Excuse My Dear Aunt Sally (Parentheses Exponentiation Multiplication Division Addition Subtraction).