Visual Basic .NET/Arithmetic operators
Arithmetic operators
Visual Basic .NET provides a basic set of operators to calculate simple arithmetic.
+ Addition - Subtraction * Multiplication / Division \ Integer division Mod Remainder Division ^ Exponentiation & String concatenation 7 + 2 produces 9 7 - 2 produces 5 7 * 2 produces 14 7 / 2 produces 3.5 7 \ 2 produces 3 7 Mod 2 produces 1 7 ^ 2 produces 49 "7" & "7" produces "77"
Let's look at a short example of arithmetic operations before we jump into the operators themselves.
In this example we will also be using some basic variables. The Dim operator creates the variable.
Dim Commission As Single Dim Sales As Single Sales = 3142.51 Commission = 0.3 * Sales ' Calculate 30% commission.
First, we set the total sales to 3142.51.
The * operator calculates multiplication, so the last line is equivalent to . This means that our second step is multiplying 0.3 and Sales. Sales is 3142.51, so our result should be the product of 0.3 and 3142.51.
Why the funny symbols?
With the exception of addition and subtraction, the symbols used are different to the ones used in real life. This is simply because the other symbols are not available on a standard keyboard.
A good reference for the operators in Visual Basic .NET is Windows's built-in Calculator. If you set Calculator on scientific mode, you have access to the same operators as in .NET.
Addition
This adds two numbers together, and is denoted by the "+" symbol. If strings are involved it may also do String concatenation. Examples:
Dim x As Integer x = 7 + 2 ' Results in 9. x = 25 + -4 ' Results in 21. Dim StringA As String StringA = "A string" + "Another string" ' Results in "A stringAnother string"
By using funny symbol it will become easy to parse during execution. mostly that is the reasson why they have used.
Subtraction
This subtracts two numbers, and is denoted by the "-" symbol. Examples:
Dim x As Integer x = 7 - 2 ' Results in 5. x = 25 - -4 ' Results in 29.
Multiplication
This multiplies two numbers, and is denoted by the "*" symbol. Examples:
Dim x As Integer x = 7 * 2 ' Results in 14. x = 25 * -4 ' Results in -100.
Division
There are more types of division than the one denoted by the "/" symbol. There is also integer division and remainder division.
- Division
- This is the most commonly used form of division and is denoted by the "/" operator. Examples:
Dim x As Single ' (note that we must use the Single class to have decimals) x = 7 / 2 ' Results in 3.5. x = 25 / 4 ' Results in 6.25.
- Integer division
- This divides two numbers, and gives the result without the remainder if the quotient is a decimal. Examples:
Dim x As Integer x = 7 \ 2 ' Results in 3. x = 25 \ 4 ' Results in 6.
- Remainder Division
- This divides two numbers, and gives the result's remainder if the quotient is a decimal. This is denoted by the operator "Mod." Examples:
Dim x As Integer x = 7 Mod 2 ' Results in 1. x = 25 Mod 4 ' Results in 1.
Exponentiation
This is raising a number to a power. For example in VB .Net code is:
Dim x As Integer x = 7 ^ 2 ' Results in 49.
This results in the number 49 being assigned to the variable x. It can also be used to calculate the square root of a number. The square root of a number is the number raised to the power of 0.5.
Dim x As Single x = 7 ^ 0.5 ' Results in a number around 2.645.
Note: It is necessary to ensure that the variables be correctly declared to get the desired results. The following example works, but will produce the wrong result. This is because the Integer class does not allow decimal places (just like mathematical integers.)
Dim x As Integer x = 7 ^ 0.5 ' Results in 3.
Since x is declared as an Integer type, the value square root, a real number, is stored incorrectly.
Any nth root of number is the can be calculated by raising the number to the power of :
Dim x As Single Dim n As Single n = 7 x = 2 ^ (1 / n)
This is because .