TheOnlyOne Posted April 20, 2009 Posted April 20, 2009 dim $x,$y $y=$x*2 $y=$x+5 msgbox (0,"",$x&" + "&$y) okay that i want my program to do is to find out what $y and $x ? ex. in this scipt $x=5 and $y=10 but how can i get it to calc it?
qazwsx Posted April 20, 2009 Posted April 20, 2009 http://en.wikipedia.org/wiki/Matrix_(mathematics)It may be easier to just search for a solve function.
Valuater Posted April 20, 2009 Posted April 20, 2009 This is simple math... Dim $x = 1, $y = 2 $x = $x * 2 $y = $x + 5 MsgBox(0, "", $x + $y) 8)
qazwsx Posted April 20, 2009 Posted April 20, 2009 Ohh i misread. I thought he wanted a solve function. Sorry.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now