Results 1 to 5 of 5
Thread: creating a random equation
-
August 28th, 2009, 09:41 PM #117Registered User
postscreating a random equation
im having a bit of difficulty on this one...
how would you go about creating a random equation? i would like to randomly generate two individual numbers, a random operator (out of +, -, *, /) between these numbers and then the user would input a number to answer the equation... any thoughts on this?
-
August 29th, 2009, 01:16 AM #2
Use Math.random to select a number. Pick an element from the operator array containing ["+", "-", "*", "/"].
Again Math.random for getting the first and second numbers within a range.
Use a string conditional check for the operator selected and perform the necessary calculations to check the result.

Hope that helps.
-
August 29th, 2009, 10:42 AM #317Registered User
poststhanks for that, umm i have been able to create random number and also random operators from an array, but i think i may have confused myself... how would you go about performing the calculations?
-
August 29th, 2009, 11:12 AM #4Code:
switch(moperator) { case "+": mresult=mnum1+mnum2; break; case "-": mresult=mnum1-mnum2; break; case "*": mresult=mnum1*mnum2; break; case "/": mresult=mnum1/mnum2; break; } txtresult.text=mresult;
-
August 29th, 2009, 11:39 AM #5

Reply With Quote



Bookmarks