Final answer:
C++ allows the programmer to compare numeric values using relational operators.
Step-by-step explanation:
C++ allows the programmer to compare numeric values using relational operators. These operators include < (less than), > (greater than), <= (less than or equal to), >= (greater than or equal to), == (equal to), and != (not equal to). With these operators, you can compare two numeric values and get a result of either true or false based on the comparison.