Assignment Operators
| VBScript operation | Arithmetic operator | Algebraic expression | VBScript expression |
| Addition | + | x + y | x + y |
| Subtraction | - | z – 8 | z – 8 |
| Multiplication | * | yb | y * b |
| Division (floating-point) | / | v u or | v / u |
| Division (integer) | \ | none | v \ u |
| Exponentiation | ^ | q p | q ^ p |
| Negation | - | –e | —e |
| Modulus | Mod | q mod r | q Mod r |
No comments:
Post a Comment