Powershell - 算术运算符示例

以下脚本演示了算术运算符。

> $a = 10
 
> $b = 20
 
> $c = 25
 
> $d = 25
 
> $a + $b
 30
 
> $a - $b
 -10
 
> $a * $b
 200
 
> $b / $a
 2
 
> $b % $a
 0 

❮ powershell_operators.html