'EasyMath.vbs 'Demonstrates Simple Math 'Scripting by Fusion 13 'webmaster@Fusion13.com Please send attachments and personal programs and or scripts 'computing.Fusion13.com '7-22-01 'Copyright Fusion 13 Option Explicit dim xbox xbox = msgbox("The following will demonstrate simple math, and the output of results. The variable numbers used will be the number 2, and the number 3." , vbokonly, "Math Demonstration") 'line 11 xbox = msgbox( 2 + 3 , vbokonly, "Addition") xbox = msgbox( 2 - 3 , vbokonly, "Subtraction") xbox = msgbox( 2 * 3 , vbokonly, "Multiplication") xbox = msgbox( 2 / 3 , vbokonly, "Floating Point Devision") xbox = msgbox( 2 \ 3 , vbokonly, "Integer Devision") dim varMod varMod = 2 mod 3 xbox = msgbox(varMod, vbokonly, "Mod")