Question:
Write a single statement that chooses a random number from each of the following sets:
a) 2,4,6,8,10
b) 3,5,7,9,11
c) 6,10,14,18,22
I wrote the following statement for the set (a):
(1 + (rand() % 5)) * 2;
but I am unable to write ones for sets (b) and (c). Can someone please give me some hint about how to choose random numbers from these sets using a single statement??
I was able to do this using a switch selection structure but in in a single statement.