VBScript 中的算术运算符



下表列出了 VBScript 语言支持的所有算术运算符。假设变量 A 为 5,变量 B 为 10,那么 −

运算符 描述 示例
+ 添加两个操作数 A + B 将返回 15
- 从第一个操作数中减去第二个操作数 A - B 将返回 -5
* 两个操作数相乘 A * B 将返回 50
/ 将分子除以分母 B / A 将返回 2
% 取模运算符,返回整数除法后的余数 B MOD A 将返回 0
^ 指数运算符 B ^ A 将返回 100000

示例

尝试以下示例来了解 VBScript 中的所有算术运算符 −

<!DOCTYPE html>
<html>
   <body>
      <script language = "vbscript" type = "text/vbscript">
         Dim a : a = 5
         Dim b : b = 10
         Dim c

         c = a+b
         Document.write ("Addition Result is " &c)
         Document.write ("<br></br>")    'Inserting a Line Break for readability
         
         c = a-b
         Document.write ("Subtraction Result is " &c)
         Document.write ("<br></br>")   'Inserting a Line Break for readability
         
         c = a*b
         Document.write ("Multiplication Result is " &c)
         Document.write ("<br></br>")
         
         c = b/a
         Document.write ("Division Result is " &c)
         Document.write ("<br></br>")
         
         c = b MOD a
         Document.write ("Modulus Result is " &c)
         Document.write ("<br></br>")
         
         c = b^a
         Document.write ("Exponentiation Result is " &c)
         Document.write ("<br></br>")
      </script>
   </body>
</html>

当您将其另存为 .html 格式并在 Internet Explorer 中执行时,上面的脚本将产生以下结果 −

Addition Result is 15

Subtraction Result is -5

Multiplication Result is 50

Division Result is 2

Modulus Result is 0

Exponentiation Result is 100000
vbscript_operators.htm
广告