Final answer:
To check if an integer variable x contains a value in the range 3, 4, 5, 6, 7, or 8, you can use the expression (x >= 3 && x <= 8).
Step-by-step explanation:
To check if an integer variable x contains a value in the range 3, 4, 5, 6, 7, or 8, we can use the relational expression:
(x >= 3 && x <= 8)
This expression checks if x is greater than or equal to 3 and less than or equal to 8. If this condition is true, the message 'The value is in range!' will be printed.