| Random Tasks |
The purpose of these tasks is to allow you to familiarize yourself with the java.util.Random class and some of the methods it offers.
To prepare, create a Robots project called RandomTasks, and declare a class field as follows,
private static Random random = new Random();
You'll use the random object to facilitate the subsequent requests.
More to come...