Hi guys, thanks for any help offered.
I am attempting to ask a user for a height and width value - which need to be integers between 5 and 10 for each (height and width)
I also need the user to select 3 different colours, out of a predetermined list of colours.
My question is, which is cleaner:
Holding the height and width in their own variables - i.e.
width = #integer between 5 and 10
height = #same as above
With the colours being selected being held in their own variables:
colour1 = red
colour2 = blue
colour3 = yellow
Or would it be easier for the user to input the values and store them in a list
widthHeigh = [6, 7]
And the colours being held in a list:
userColours =
Please bare in mind that I need to access these individual variables later in the code.
If you could give me pointers in how best to code this segment, I would be very apreciative.
Many thanks,
#8