数学

如果你有以下变量

Dim leftValue As Integer = 5
Dim rightValue As Integer = 2
Dim value As Integer = 0

除了通过加号演出 + 。

value  = leftValue + rightValue

'Output the following:
'7

减法由减号执行 - 。

value = leftValue - rightValue

'Output the following:
'3

乘法由星形符号执行 * 。

value = leftValue * rightValue

'Output the following:
'10

分裂由正斜杠符号执行 / 。

value = leftValue / rightValue

'Output the following:
'2.5

整数除法由反斜杠符号执行 \ 。

value = leftValue \ rightValue

'Output the following:
'2

模数由 Mod 关键字执行。

value = leftValue Mod rightValue

'Output the following:
'1

提升到 ^ 符号执行的力量

value = leftValue ^ rightValue

'Output the following:
'25