Coding Conventions for C++ and Java applications ...

- java.util.Scanner – we know about this one from above - java.util.Random – this one allows us to generate a random integer. Note that the integer will be between 0 and max, where max is the number of integers to pick from. So, if max is 10, then Java selects at random between 0 and 9. If max is 16, then Java selects between 0 and 15. ................
................