Pages: 1
Topic closed
How can I make Scratch randomly select +,-,*,/?
Thanks for your help in advance.
Offline
The easiest way would be to do something like this:
set {temp} to (pick random 1 to 4)
if {temp} = 1
addition operation
if {temp} = 2
subtraction operation
if {temp} = 3
multiplication operation
if {temp} = 4
division operationOffline
Topic closed
Pages: 1