Write a code segment that print the message:
The value is in range
if the value of total is between 7 and 23, inclusive.
Otherwise, it does nothing.
if ((total >= 7) && (total <= 23))
System.out.println("The value is in range");