Math, asked by SangeethaBannu5586, 1 year ago

C++ less than less than equal greater than greater than equals

Answers

Answered by Anirudhbhardwaj01
1

Step-by-step explanation:

Using an obvious notation, "> || ==" is actually an over-requirement for >=.

Although note that for all the relational operators, you only actually need <, since equivalence is established if a < b and b < a are both false. In fact this is one of the concepts used in ordered C++ standard library containers.

Similar questions